aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libstorycode/storycode.y11
1 files changed, 5 insertions, 6 deletions
diff --git a/libstorycode/storycode.y b/libstorycode/storycode.y
index 576e223..1f163f3 100644
--- a/libstorycode/storycode.y
+++ b/libstorycode/storycode.y
@@ -166,18 +166,17 @@ prestitle:
;
bulletpoint:
- BP STRING { $$ = $2; }
+ BP STRING { $$ = $2; }
;
/* ------ Slide contents ------ */
slide:
- SLIDE OPENBRACE
- slide_parts
- CLOSEBRACE { presentation_add_slide(ctx->p, ctx->s);
- narrative_add_slide(ctx->n, ctx->s);
- ctx->s = slide_new(); /* New work in progress object */ }
+ SLIDE OPENBRACE slide_parts CLOSEBRACE { presentation_add_slide(ctx->p, ctx->s);
+ narrative_add_slide(ctx->n, ctx->s);
+ /* New work in progress object */
+ ctx->s = slide_new(); }
;
slide_parts: