diff options
author | Jim Meyering <meyering@lucent.com> | 2002-02-28 18:46:17 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2002-02-28 18:46:17 +0000 |
commit | 001e3fee0decd0ebf7a10270cce0ef93b94fa772 (patch) | |
tree | a4ac39329101f5bf72e5df149b1e91d3bceb4442 /gcc/cpplex.c | |
parent | 89076bb3656b393a738933a79ddfde1161b3485a (diff) | |
download | gcc-001e3fee0decd0ebf7a10270cce0ef93b94fa772.zip gcc-001e3fee0decd0ebf7a10270cce0ef93b94fa772.tar.gz gcc-001e3fee0decd0ebf7a10270cce0ef93b94fa772.tar.bz2 |
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
Diffstat (limited to 'gcc/cpplex.c')
-rw-r--r-- | gcc/cpplex.c | 1 |
1 files changed, 1 insertions, 0 deletions
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': |