cpplex.c (cpp_parse_escape): Restore mistakenly-removed code: \a still means TARGET_BELL.
authorJim Meyering <meyering@lucent.com>
Thu, 28 Feb 2002 18:46:17 +0000 (18:46 +0000)
committerNeil Booth <neil@gcc.gnu.org>
Thu, 28 Feb 2002 18:46:17 +0000 (18:46 +0000)
* cpplex.c (cpp_parse_escape): Restore mistakenly-removed code:
\a still means TARGET_BELL.

From-SVN: r50154

gcc/ChangeLog
gcc/cpplex.c

index 03f44212a9d9195e0ea5e068aeaf54391eba162f..6fd1652728bfe525907e3c44b6bd30f865b7acf3 100644 (file)
@@ -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.
index 1a602885d18dd5c9f75e2c5bea2e7693f880e55e..c1dae50f2082c102aefa3a76338ead5366383cc1 100644 (file)
@@ -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':