From bc205914531d551c6d7526da0ae70533b99c7a3c Mon Sep 17 00:00:00 2001 From: neil Date: Tue, 22 Apr 2003 19:28:00 +0000 Subject: * c-lex.c (c_lex): Handle CPP_OTHER differently. * cppexp.c (_cpp_parse_expr): Similarly. * cpplex.c (SPELL_CHAR): Remove. (_cpp_lex_direct): Stray chars are saved as byte strings. (cpp_spell_token, cpp_output_token, _cpp_equiv_token): Don't handle SPELL_CHAR. (cpp_avoid_paste): Update handling of CPP_OTHER. * cpplib.h: Spell CPP_OTHER like a number. (struct cpp_token): Remove member c. * cppmacro.c (stringify_arg): Update handling of CPP_OTHER. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@65951 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/c-lex.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'gcc/c-lex.c') diff --git a/gcc/c-lex.c b/gcc/c-lex.c index ec16c15397f..e6017d3141a 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -344,12 +344,9 @@ c_lex (value) *value = NULL_TREE; switch (tok->type) { - /* Issue this error here, where we can get at tok->val.c. */ case CPP_OTHER: - if (ISGRAPH (tok->val.c)) - error ("stray '%c' in program", tok->val.c); - else - error ("stray '\\%o' in program", tok->val.c); + error ("stray token \"%s\" in program", + cpp_token_as_text (parse_in, tok)); goto retry; case CPP_NAME: -- cgit v1.2.1