summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>2002-02-28 18:46:17 +0000
committerneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>2002-02-28 18:46:17 +0000
commit0b3481a41f58a6291f2b47eb10b4013081b4a07a (patch)
treea4ac39329101f5bf72e5df149b1e91d3bceb4442 /gcc
parent0b9236907f81f02c4b87895496037afdcc1ead6c (diff)
downloadgcc-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/ChangeLog5
-rw-r--r--gcc/cpplex.c1
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':