fix sign extension bug
Submitted by: Nikolai Saoukh <nms@ethereal.ru>
This commit is contained in:
parent
cc015237c0
commit
c1a2210272
@ -53,7 +53,7 @@ XDIGIT [0-9a-fA-F]
|
||||
W [\t\n\r ]
|
||||
|
||||
%%
|
||||
\'.\' { yylval.rune = yytext[1];
|
||||
\'.\' { yylval.rune = (unsigned char)yytext[1];
|
||||
return(RUNE); }
|
||||
|
||||
'\\a' { yylval.rune = '\a';
|
||||
|
Loading…
Reference in New Issue
Block a user