diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-02-28 18:46:17 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-02-28 18:46:17 +0000 |
commit | 0b3481a41f58a6291f2b47eb10b4013081b4a07a (patch) | |
tree | a4ac39329101f5bf72e5df149b1e91d3bceb4442 /gcc | |
parent | 0b9236907f81f02c4b87895496037afdcc1ead6c (diff) | |
download | gcc-0b3481a41f58a6291f2b47eb10b4013081b4a07a.tar.gz |
* cpplex.c (cpp_parse_escape): Restore mistakenly-removed code:
\a still means TARGET_BELL.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@50154 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cpplex.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 03f44212a9d..6fd1652728b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-02-28 Jim Meyering <meyering@lucent.com> + + * cpplex.c (cpp_parse_escape): Restore mistakenly-removed code: + \a still means TARGET_BELL. + 2002-02-28 Richard Henderson <rth@redhat.com> * haifa-sched.c (sched_emit_insn): New. diff --git a/gcc/cpplex.c b/gcc/cpplex.c index 1a602885d18..c1dae50f208 100644 --- a/gcc/cpplex.c +++ b/gcc/cpplex.c @@ -1721,6 +1721,7 @@ cpp_parse_escape (pfile, pstr, limit, mask) case 'a': if (CPP_WTRADITIONAL (pfile)) cpp_warning (pfile, "the meaning of '\\a' is different in traditional C"); + c = TARGET_BELL; break; case 'e': case 'E': |