Corrected the lexer (no vertical space after pragmas with the new way of doing them)

This commit is contained in:
Neil Brown 2009-04-01 17:07:37 +00:00
parent 512d05dd36
commit 4c4fccc1a2

View File

@ -110,7 +110,7 @@ occam :-
<five> "SHARED" { mkToken Pragma two }
<five> "PERMITALIASES" { mkToken Pragma two }
<five> "EXTERNAL" $horizSpace* \" { mkToken Pragma four }
<four> \" $horizSpace* $vertSpace+ { mkState 0 }
<four> \" $horizSpace* { mkState 0 }
<one> @preprocessor { mkToken TokPreprocessor 0 }
<one, two> "--" [^\n]* { mkState 0 }