From 001e3fee0decd0ebf7a10270cce0ef93b94fa772 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 28 Feb 2002 18:46:17 +0000 Subject: [PATCH] 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(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 03f44212a9d9..6fd1652728bf 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 1a602885d18d..c1dae50f2082 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':