diff options
Diffstat (limited to 'gcc/cppexp.c')
-rw-r--r-- | gcc/cppexp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cppexp.c b/gcc/cppexp.c index f42e0b9..330236e 100644 --- a/gcc/cppexp.c +++ b/gcc/cppexp.c @@ -532,7 +532,7 @@ cpp_parse_escape (pfile, string_ptr, result_mask) case 'E': if (CPP_OPTIONS (pfile)->pedantic) cpp_pedwarn (pfile, "non-ANSI-standard escape sequence, `\\%c'", c); - return 033; + return TARGET_ESC; case 'f': return TARGET_FF; case 'n': |