Commit 7e6b19dc by Richard Stallman

(readescape): DEL isn't printable.

From-SVN: r1971
parent 5fe5c210
...@@ -909,7 +909,7 @@ readescape () ...@@ -909,7 +909,7 @@ readescape ()
pedwarn ("non-ANSI escape sequence `\\%c'", c); pedwarn ("non-ANSI escape sequence `\\%c'", c);
return c; return c;
} }
if (c >= 040 && c <= 0177) if (c >= 040 && c < 0177)
pedwarn ("unknown escape sequence `\\%c'", c); pedwarn ("unknown escape sequence `\\%c'", c);
else else
pedwarn ("unknown escape sequence: `\\' followed by char code 0x%x", c); pedwarn ("unknown escape sequence: `\\' followed by char code 0x%x", c);
......
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