Commit b670485b by Richard Stallman

(parse_escape): Support \E and \e like cc1:

they mean \033, and they generate a warning if pedantic.

From-SVN: r3410
parent 585ec938
...@@ -748,6 +748,9 @@ parse_escape (string_ptr) ...@@ -748,6 +748,9 @@ parse_escape (string_ptr)
case 'b': case 'b':
return TARGET_BS; return TARGET_BS;
case 'e': case 'e':
case 'E':
if (pedantic)
pedwarn ("non-ANSI-standard escape sequence, `\\%c'", c);
return 033; return 033;
case 'f': case 'f':
return TARGET_FF; return TARGET_FF;
......
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