Skip to content

Commit

Permalink
oops, bad regexp
Browse files Browse the repository at this point in the history
  • Loading branch information
ranjitjhala committed Feb 11, 2015
1 parent 7674ade commit 57f35df
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external/fixpoint/fixLex.mll
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ rule token = parse
| (digit)+ { Num (safe_int_of_string (Lexing.lexeme lexbuf)) }
| (alphlet)letdig* { Id (Lexing.lexeme lexbuf) }
| '''[^''']*''' { Id (snip_begin_end (Lexing.lexeme lexbuf)) }
| '"'[^'"']*'"' { Stringlit (snip_begin_end (Lexing.lexeme lexbuf)) }
| '"'[^'"']*'"' { StringLit (snip_begin_end (Lexing.lexeme lexbuf)) }
| eof { EOF }
| _ { begin
lexerror ("Illegal Character '" ^
Expand Down
Binary file modified external/fixpoint/fixpoint.native-x86_64-darwin
Binary file not shown.

0 comments on commit 57f35df

Please sign in to comment.