Commit b539a651 by Richard Stallman

(yylex): Use MAP_CHARACTER if it's defined.

From-SVN: r4059
parent d9daaee8
......@@ -1721,6 +1721,10 @@ yylex ()
pedwarn ("ANSI C forbids newline in character constant");
lineno++;
}
#ifdef MAP_CHARACTER
else
c = MAP_CHARACTER (c);
#endif
num_chars++;
if (num_chars > maxtoken - 4)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment