aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/storycode.y
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2019-02-19 08:23:44 +0100
committerThomas White <taw@bitwiz.me.uk>2019-02-19 08:23:44 +0100
commit9fbe4d66565e6ab11c5022bcfe5ed0ddfb91dc7e (patch)
treeb95e39c462cc147b2f8e998df5f7010e73834d59 /libstorycode/storycode.y
parent135cc1ef50930b86189be2303f68ab387ebf7f27 (diff)
Add lots of function skeletons
Diffstat (limited to 'libstorycode/storycode.y')
-rw-r--r--libstorycode/storycode.y11
1 files changed, 8 insertions, 3 deletions
diff --git a/libstorycode/storycode.y b/libstorycode/storycode.y
index e17c56b..654dec3 100644
--- a/libstorycode/storycode.y
+++ b/libstorycode/storycode.y
@@ -39,7 +39,6 @@
Stylesheet *ss;
Narrative *n;
Slide *s;
- SlideItem *si;
char *str;
}
@@ -76,9 +75,9 @@
%type <ss> stylesheet
%type <str> prestitle
%type <str> STRING
+%type <str> textframe
+%type <str> imageframe
%type <str> bulletpoint
-%type <si> textframe
-%type <si> imageframe
%type <str> multi_line_string
%type <str> frameopt
%type <str> geometry /* FIXME: Should have its own type */
@@ -96,6 +95,12 @@
ctx->s = slide_new();
}
+%{
+ void frameopts_reset(struct scpctx *ctx)
+ {
+ }
+%}
+
%%
presentation: