diff options
author | Adam Chlipala <adam@chlipala.net> | 2015-05-28 10:28:15 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2015-05-28 10:28:15 -0400 |
commit | b609954bf0065f5acbc50dbfa7e28e7145f9a2e3 (patch) | |
tree | 604255596942ee86c3af6a1f58633756b59bccb7 | |
parent | eb9d168a2236eb6c892b11d6d30f065898a89762 (diff) |
Remove duplicate lexer line
-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)); |