aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 03f4421..6fd1652 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 1a60288..c1dae50 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':