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:
parent
9a40134f8d
commit
f5d59814ac
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=45219
@ -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…
x
Reference in New Issue
Block a user