* cpplex.c (cpp_parse_escape): Restore mistakenly-removed code:
\a still means TARGET_BELL.
From-SVN: r50154
+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.
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':