aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/storycode.l
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2019-10-03 18:17:44 +0200
committerThomas White <taw@physics.org>2019-10-05 17:03:43 +0200
commit7db1f2b50c09365e6181bffbad7c043885a75e48 (patch)
tree620542da51472fc7a9294d2daa127727e1ef9457 /libstorycode/storycode.l
parent54b33a62d7d1dd5e70ee2d54a0bba51a59bac76f (diff)
Use characters instead of SQOPEN/SQCLOSE
Diffstat (limited to 'libstorycode/storycode.l')
-rw-r--r--libstorycode/storycode.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/libstorycode/storycode.l b/libstorycode/storycode.l
index cadd771..2e063f8 100644
--- a/libstorycode/storycode.l
+++ b/libstorycode/storycode.l
@@ -102,8 +102,8 @@ BGCOL { BEGIN(col); return SC_BGCOL; }
\n { BEGIN(0); lineno++; }
-"[" { sqb_caller = YY_START; BEGIN(sqb); return SC_SQOPEN; }
-"]" { BEGIN(sqb_caller); return SC_SQCLOSE; }
+"[" { sqb_caller = YY_START; BEGIN(sqb); return '['; }
+"]" { BEGIN(sqb_caller); return ']'; }
[{] { return '{'; }
[}] { return '}'; }
[. ] {}