Commit cbccf5e8 by Mark Mitchell Committed by Mark Mitchell

cpplex.c (_cpp_lex_token): Don't call CPP_BUMP_LINE when the mark is active.

	* cpplex.c (_cpp_lex_token): Don't call CPP_BUMP_LINE when the
	mark is active.

From-SVN: r33228
parent cd89c296
2000-04-18 Mark Mitchell <mark@codesourcery.com>
* cpplex.c (_cpp_lex_token): Don't call CPP_BUMP_LINE when the
mark is active.
Tue Apr 18 14:16:47 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> Tue Apr 18 14:16:47 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* c-decl.c (mark_binding_level): Use 'for' instead of `while'. * c-decl.c (mark_binding_level): Use 'for' instead of `while'.
......
...@@ -1218,7 +1218,8 @@ _cpp_lex_token (pfile) ...@@ -1218,7 +1218,8 @@ _cpp_lex_token (pfile)
else else
{ {
/* Backslash newline is ignored. */ /* Backslash newline is ignored. */
CPP_BUMP_LINE (pfile); if (!ACTIVE_MARK_P (pfile))
CPP_BUMP_LINE (pfile);
goto get_next; goto get_next;
} }
......
// Build don't link:
#define x \
y
int; // ERROR - invalid declaration
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