summaryrefslogtreecommitdiff
path: root/asm/asmlex.mll
diff options
context:
space:
mode:
authorAlex AUVOLAT <alex.auvolat@ens.fr>2014-01-10 16:56:20 +0100
committerAlex AUVOLAT <alex.auvolat@ens.fr>2014-01-10 16:56:20 +0100
commit70a040d0c327ef1fa8fa73da70f245dedbf8bf2e (patch)
treec17ff1a97e7126194b5ba6081aeb353435d54cd3 /asm/asmlex.mll
parent6de7ebfc3fa320b639a292a174f213005d5ce2c2 (diff)
parentb840059a7f2fb0e3796414f30f1e241d03b44dbf (diff)
downloadSystDigit-Projet-70a040d0c327ef1fa8fa73da70f245dedbf8bf2e.tar.gz
SystDigit-Projet-70a040d0c327ef1fa8fa73da70f245dedbf8bf2e.zip
Merge branch 'emile'
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 7459966..1f598e9 100644
--- a/asm/asmlex.mll
+++ b/asm/asmlex.mll
@@ -108,6 +108,7 @@ rule token = parse
| '(' { LP }
| ')' { RP }
| '"' { str [] lexbuf }
+ |';' { SEMIC }
and str acc = parse
| "\\\\" { str ('\\' :: acc) lexbuf }