fix sign extension bug

Submitted by: Nikolai Saoukh <nms@ethereal.ru>
This commit is contained in:
ache 1999-04-01 10:22:48 +00:00
parent cc015237c0
commit c1a2210272

View File

@ -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';