From 2a1e0fe6db0d2980b4c7a8e413a7c81aadbc0dd1 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Thu, 21 Feb 2019 08:25:39 +0100 Subject: Formatting --- libstorycode/storycode.y | 11 +++++------ 1 file 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: -- cgit v1.2.3