From 001e3fee0decd0ebf7a10270cce0ef93b94fa772 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 28 Feb 2002 18:46:17 +0000 Subject: 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 --- gcc/ChangeLog | 5 +++++ gcc/cpplex.c | 1 + 2 files changed, 6 insertions(+) (limited to 'gcc') 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 + + * cpplex.c (cpp_parse_escape): Restore mistakenly-removed code: + \a still means TARGET_BELL. + 2002-02-28 Richard Henderson * 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': -- cgit v1.1