diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2011-11-10 11:59:10 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2011-11-10 11:59:10 -0800 |
commit | f9d713f3fc2fbd1c3ead07121b3bc39f5088a7d7 (patch) | |
tree | fb57a1c93b1eba7919f0e350b73da3d1e3da60ef | |
parent | 67af8c39f31a738af98694375768192795f33ec4 (diff) | |
download | txr-f9d713f3fc2fbd1c3ead07121b3bc39f5088a7d7.tar.gz txr-f9d713f3fc2fbd1c3ead07121b3bc39f5088a7d7.tar.bz2 txr-f9d713f3fc2fbd1c3ead07121b3bc39f5088a7d7.zip |
* parser.l: Fixed wrong error message.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | parser.l | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,9 @@ 2011-11-10 Kaz Kylheku <kaz@kylheku.com> + * parser.l: Fixed wrong error message. + +2011-11-10 Kaz Kylheku <kaz@kylheku.com> + * match.c (v_fun): Bugfix: if there is material after the function call, decline it; it is a horizontal context. @@ -579,7 +579,7 @@ UONLY {U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U} } <STRLIT,CHRLIT,QSILIT>. { - yyerrprepf(lit("non-UTF-8 byte in regex: '\\x~02x'"), + yyerrprepf(lit("non-UTF-8 byte in literal: '\\x~02x'"), num((unsigned char) yytext[0]), nao); return ERRTOK; } |