mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-04 20:50:05 +08:00
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:
parent
89076bb365
commit
001e3fee0d
@ -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.
|
||||
|
@ -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':
|
||||
|
Loading…
Reference in New Issue
Block a user