diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2018-05-18 06:08:48 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2018-05-18 06:08:48 -0700 |
commit | a7916fbac400497b6ac35da8a689a3c2cb68141d (patch) | |
tree | 2a80ef3fcdc35977cf51d37f7d6b2f25498ba778 /parser.l | |
parent | dbff4c5e634e23e3c957260ef8d7ddf59d81dbdb (diff) | |
download | txr-a7916fbac400497b6ac35da8a689a3c2cb68141d.tar.gz txr-a7916fbac400497b6ac35da8a689a3c2cb68141d.tar.bz2 txr-a7916fbac400497b6ac35da8a689a3c2cb68141d.zip |
C++ fixes related to recent Unicode work.
* lib.c (chk_wrealloc): convert needs to be a coerce.
* parser.l (grammar): Use yyg instead of yyscanner;
the latter is the same pointer but of void * type.
Diffstat (limited to 'parser.l')
-rw-r--r-- | parser.l | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -436,7 +436,7 @@ UONLY {U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U} || yy_top_state(yyscanner) == QWLIT) yy_pop_state(yyscanner); - yylval->lexeme = unicode_ident(yyscanner, yytext); + yylval->lexeme = unicode_ident(yyg, yytext); return SYMTOK; } @@ -449,7 +449,7 @@ UONLY {U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U} || yy_top_state(yyscanner) == QWLIT) yy_pop_state(yyscanner); - yylval->lexeme = unicode_ident(yyscanner, yytext); + yylval->lexeme = unicode_ident(yyg, yytext); return SYMTOK; } @@ -463,7 +463,7 @@ UONLY {U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U} yyerrorf(yyg, lit("bad token: ~a"), string_own(utf8_dup_from(yytext)), nao); - yylval->lexeme = unicode_ident(yyscanner, yytext); + yylval->lexeme = unicode_ident(yyg, yytext); return SYMTOK; } |