aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/urweb.lex
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2015-05-28 10:28:15 -0400
committerGravatar Adam Chlipala <adam@chlipala.net>2015-05-28 10:28:15 -0400
commit57424b901657e7c798fc7e4b20427c2d42835203 (patch)
tree604255596942ee86c3af6a1f58633756b59bccb7 /src/urweb.lex
parent40f97e49084e04f74f12dd9bccd05c9da11dd591 (diff)
Remove duplicate lexer line
Diffstat (limited to 'src/urweb.lex')
-rw-r--r--src/urweb.lex2
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));