aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2019-02-21 08:25:39 +0100
committerThomas White <taw@bitwiz.me.uk>2019-02-21 08:25:39 +0100
commit2a1e0fe6db0d2980b4c7a8e413a7c81aadbc0dd1 (patch)
tree812a3de0f5039e1dc9149b0a0f3a813443eee6a1
parent2244ab129bf25893cae4d68313222ef810bd0631 (diff)
Formatting
-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: