aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/storycode.l
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2020-01-13 00:06:05 +0100
committerThomas White <taw@bitwiz.me.uk>2020-01-13 00:17:50 +0100
commit1f2629403b9d62ecf44420f789b5c679a8ae1c98 (patch)
tree42f9c50056c089f9d70554dcdae626ffd8f552f1 /libstorycode/storycode.l
parent7304e278ced9adee5884482bbf3223f8ba1ccfde (diff)
Add segment start/end markers
Diffstat (limited to 'libstorycode/storycode.l')
-rw-r--r--libstorycode/storycode.l2
1 files changed, 2 insertions, 0 deletions
diff --git a/libstorycode/storycode.l b/libstorycode/storycode.l
index 05a5a06..2e41541 100644
--- a/libstorycode/storycode.l
+++ b/libstorycode/storycode.l
@@ -59,6 +59,8 @@ SLIDETITLE { return SC_SLIDETITLE; }
NARRATIVE { return SC_NARRATIVE; }
SLIDE { return SC_SLIDE; }
ENDOFPRESENTATION { return SC_EOP; }
+SEGMENT_START { return SC_SEG_START; }
+SEGMENT_END { return SC_SEG_END; }
BP { return SC_BP; }
GEOMETRY { BEGIN(cond_geom); return SC_GEOMETRY; }
TEXT { return SC_TEXTFRAME; }