Commit f6cb3487 by Richard Stallman

More of previous change.

From-SVN: r4060
parent b539a651
...@@ -1714,6 +1714,10 @@ yylex () ...@@ -1714,6 +1714,10 @@ yylex ()
if (width < HOST_BITS_PER_INT if (width < HOST_BITS_PER_INT
&& (unsigned) c >= (1 << width)) && (unsigned) c >= (1 << width))
pedwarn ("escape sequence out of range for character"); pedwarn ("escape sequence out of range for character");
#ifdef MAP_CHARACTER
if (isprint (c))
c = MAP_CHARACTER (c);
#endif
} }
else if (c == '\n') else if (c == '\n')
{ {
......
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