diff options
author | Neil Booth <neilb@earthling.net> | 2000-11-01 07:32:23 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2000-11-01 07:32:23 +0000 |
commit | 12c4f523b13177e1c2a39d80cf2e62a37b331f93 (patch) | |
tree | f65234f942514b168d79dfd9f3c583a40d360ea4 /gcc/cpplex.c | |
parent | 78e7629e9f2b78c8ade485fb2e209427d2696300 (diff) | |
download | gcc-12c4f523b13177e1c2a39d80cf2e62a37b331f93.zip gcc-12c4f523b13177e1c2a39d80cf2e62a37b331f93.tar.gz gcc-12c4f523b13177e1c2a39d80cf2e62a37b331f93.tar.bz2 |
c-parse.in (_yylex): Remove CPP_BACKSLASH case.
* c-parse.in (_yylex): Remove CPP_BACKSLASH case.
* cp/spew.c: Similarly.
* cpplex.c (_cpp_lex_token): Backslashes are now CPP_OTHER.
* cppmacro.c (stringify_arg): Similarly.
* cpplib.h (CPP_BACKSLASH): Delete.
From-SVN: r37182
Diffstat (limited to 'gcc/cpplex.c')
-rw-r--r-- | gcc/cpplex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpplex.c b/gcc/cpplex.c index 43e090b..68ceb36 100644 --- a/gcc/cpplex.c +++ b/gcc/cpplex.c @@ -931,7 +931,7 @@ _cpp_lex_token (pfile, result) result->type = CPP_QUERY; buffer->read_ahead = EOF; if (c == '\\') - result->type = CPP_BACKSLASH; + goto random_char; else if (c != '?') goto do_switch; } |