cpplex.c (cpp_parse_escape): Restore mistakenly-removed code: \a still means TARGET_BELL.

* cpplex.c (cpp_parse_escape): Restore mistakenly-removed code:
	\a still means TARGET_BELL.

From-SVN: r50154
This commit is contained in:
Jim Meyering 2002-02-28 18:46:17 +00:00 committed by Neil Booth
parent 89076bb365
commit 001e3fee0d
2 changed files with 6 additions and 0 deletions

View 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.

View 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':