summaryrefslogtreecommitdiff
path: root/asm/asmlex.mll
diff options
context:
space:
mode:
Diffstat (limited to 'asm/asmlex.mll')
-rw-r--r--asm/asmlex.mll1
1 files changed, 1 insertions, 0 deletions
diff --git a/asm/asmlex.mll b/asm/asmlex.mll
index 873e32d..cace4b7 100644
--- a/asm/asmlex.mll
+++ b/asm/asmlex.mll
@@ -104,6 +104,7 @@ rule token = parse
| '(' { LP }
| ')' { RP }
| '"' { str [] lexbuf }
+ |';' { SEMIC }
and str acc = parse
| "\\\\" { str ('\\' :: acc) lexbuf }