diff options
-rw-r--r-- | src/urweb.lex | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/urweb.lex b/src/urweb.lex index fcf10d94..c44a4c1d 100644 --- a/src/urweb.lex +++ b/src/urweb.lex @@ -537,8 +537,6 @@ xint = x[0-9a-fA-F][0-9a-fA-F]; <INITIAL> "CURRENT_TIMESTAMP" => (Tokens.CURRENT_TIMESTAMP (pos yypos, pos yypos + size yytext)); -<INITIAL> "CURRENT_TIMESTAMP" => (Tokens.CURRENT_TIMESTAMP (pos yypos, pos yypos + size yytext)); - <INITIAL> {id} => (Tokens.SYMBOL (yytext, pos yypos, pos yypos + size yytext)); <INITIAL> {cid} => (Tokens.CSYMBOL (yytext, pos yypos, pos yypos + size yytext)); |