diff options
author | Adam Chlipala <adamc@hcoop.net> | 2010-01-12 16:09:13 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2010-01-12 16:09:13 -0500 |
commit | 227c87323603dc0b338e89997d2fce7ffc755fb0 (patch) | |
tree | e4130a31cf93875c66cb452ebcf893a4d2254f25 /src/urweb.lex | |
parent | 8eab6ba5a16002cd6e5ddfb6a09cb23b351c9d32 (diff) |
Allow escaped backslashes in literals; conversion betwixt int and char
Diffstat (limited to 'src/urweb.lex')
-rw-r--r-- | src/urweb.lex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/urweb.lex b/src/urweb.lex index d2227d16..45f555dd 100644 --- a/src/urweb.lex +++ b/src/urweb.lex @@ -198,6 +198,7 @@ xint = x[0-9a-fA-F][0-9a-fA-F]; <STRING,CHAR> "\\\"" => (str := #"\"" :: !str; continue()); <STRING,CHAR> "\\'" => (str := #"'" :: !str; continue()); <STRING,CHAR> "\\n" => (str := #"\n" :: !str; continue()); +<STRING,CHAR> "\\\\" => (str := #"\\" :: !str; continue()); <STRING,CHAR> "\\t" => (str := #"\t" :: !str; continue()); <STRING,CHAR> "\n" => (newline yypos; str := #"\n" :: !str; continue()); |