diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-07-02 19:56:58 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-07-02 19:56:58 -0700 |
commit | 9aaeb2fc604feee26a72a672fd846b4e70c6c1aa (patch) | |
tree | 04b94e178dbd26e177524894bef9a24d0dda2176 /parser.l | |
parent | 7e13dd271df070671f9ef59969307d1bfb045ffb (diff) | |
download | txr-9aaeb2fc604feee26a72a672fd846b4e70c6c1aa.tar.gz txr-9aaeb2fc604feee26a72a672fd846b4e70c6c1aa.tar.bz2 txr-9aaeb2fc604feee26a72a672fd846b4e70c6c1aa.zip |
Support trailing semicolon after hex/octal characters.
* parser.l (%option): Remove nounput option since we need
yyunput.
(grammar): Rule for matching hex and octal escape in SPECIAL
state recognizes optional semicolon. In 109 compatibility,
this is pushed back into the stream, otherwise consumed.
* txr.1: Updated documentation, including compat notes.
* genvim.txr (txr_char): Include optional semicolon in
match. Corrected some errors where 8 and 9 were being
included as matches for octal digits.
(txr_error): Default match for \x or \o not followed
by digits.
Diffstat (limited to 'parser.l')
-rw-r--r-- | parser.l | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -166,7 +166,7 @@ static wchar_t num_esc(scanner_t *scn, char *num) %} -%option stack nounput noinput reentrant bison-bridge extra-type="parser_t *" +%option stack noinput reentrant bison-bridge extra-type="parser_t *" SYM [a-zA-Z0-9_]+ SGN [+\-] @@ -685,11 +685,18 @@ UONLY {U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U} return TEXT; } -<SPECIAL>[\\](x{HEX}+|{OCT}+) { +<SPECIAL>[\\](x{HEX}+|{OCT}+);? { wchar_t lexeme[2]; lexeme[0] = num_esc(yyg, yytext + 1); lexeme[1] = 0; yylval->lexeme = chk_strdup(lexeme); + + { + char lastchar = yytext[yyleng-1]; + if (lastchar == ';' && opt_compat && opt_compat <= 109) + unput(lastchar); + } + yy_pop_state(yyscanner); return TEXT; } |