Commit 709a22df by Tom Tromey Committed by Tom Tromey

re PR preprocessor/41067 (Inconsistency in warnings on invalid \-escapes)

	PR preprocessor/41067:
	* charset.c (convert_escape): Add missing ":" to error text.

From-SVN: r150854
parent de383aec
2009-08-17 Tom Tromey <tromey@redhat.com>
PR preprocessor/41067:
* charset.c (convert_escape): Add missing ":" to error text.
2009-07-27 Douglas B Rupp <rupp@gnat.com> 2009-07-27 Douglas B Rupp <rupp@gnat.com>
* include/cpplib.h (INO_T_CPP): New macro. * include/cpplib.h (INO_T_CPP): New macro.
......
...@@ -1301,7 +1301,7 @@ convert_escape (cpp_reader *pfile, const uchar *from, const uchar *limit, ...@@ -1301,7 +1301,7 @@ convert_escape (cpp_reader *pfile, const uchar *from, const uchar *limit,
unknown: unknown:
if (ISGRAPH (c)) if (ISGRAPH (c))
cpp_error (pfile, CPP_DL_PEDWARN, cpp_error (pfile, CPP_DL_PEDWARN,
"unknown escape sequence '\\%c'", (int) c); "unknown escape sequence: '\\%c'", (int) c);
else else
{ {
/* diagnostic.c does not support "%03o". When it does, this /* diagnostic.c does not support "%03o". When it does, this
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment