Skip to content
Snippets Groups Projects
Commit 288c4598 authored by Marek Vavrusa's avatar Marek Vavrusa
Browse files

Fixed not-escaped enumeration.

parent 751187fa
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,7 @@ BLANK [ \t\n]
\#.*\n /* Ignore comments */;
{BLANK}+ /* Ignore whitespace */;
: /* Optional : in assignments. */;
[!$%^&*()/+-@{};,] { return yytext[0]; }
[\!\$\%\^\&\*\(\)\/\+\-\@\{\}\;\,] { return yytext[0]; }
system { lval.t = yytext; return SYSTEM; }
identity { lval.t = yytext; return IDENTITY; }
version { lval.t = yytext; return VERSION; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment