aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/storycode.y
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2019-03-04 08:57:16 +0100
committerThomas White <taw@bitwiz.me.uk>2019-03-04 08:57:16 +0100
commit9c4fa38c4b301645439a6718ef42aa597a97de9b (patch)
tree188c08b19fdc7af014449dd0c560b062e650418c /libstorycode/storycode.y
parent60d5817656bd7c2a9f07a83be612a28c9041ab12 (diff)
Placeholder boxes for slides in narrative
Diffstat (limited to 'libstorycode/storycode.y')
-rw-r--r--libstorycode/storycode.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstorycode/storycode.y b/libstorycode/storycode.y
index f400bec..f549525 100644
--- a/libstorycode/storycode.y
+++ b/libstorycode/storycode.y
@@ -195,7 +195,7 @@ narrative:
narrative_el:
narrative_prestitle { narrative_add_prestitle(ctx->n, $1); }
| narrative_bulletpoint { narrative_add_bp(ctx->n, $1); }
-| slide { narrative_add_slide(ctx->n, $1); }
+| slide { }
| STRING { narrative_add_text(ctx->n, $1); }
;