diff options
-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; } |