(<HEX>): Bugfix
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -106,7 +106,7 @@ WS [ \t]* | ... | @@ -106,7 +106,7 @@ WS [ \t]* |
106 | return STRING; | 106 | return STRING; |
107 | } | 107 | } |
108 | <HEX>{X}{X} { | 108 | <HEX>{X}{X} { |
109 | int c = digit_to_number (yytext[0]*16 + yytext[1]); | 109 | int c = digit_to_number (yytext[0])*16 + digit_to_number (yytext[1]); |
110 | obstack_1grow (&stack, c); | 110 | obstack_1grow (&stack, c); |
111 | } | 111 | } |
112 | <HEX>">"/[ \t\\\n,)] { | 112 | <HEX>">"/[ \t\\\n,)] { | ... | ... |
-
Please register or sign in to post a comment