1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-02-04 17:15:50 +00:00

fix sign extension bug

Submitted by: Nikolai Saoukh <nms@ethereal.ru>
This commit is contained in:
Andrey A. Chernov 1999-04-01 10:22:48 +00:00
parent 9a40134f8d
commit f5d59814ac
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=45219

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