Commit e7f9deae by Jason Merrill Committed by Jason Merrill

cpplib.c (cpp_get_token): Don't return a CPP_POP if the buffer has manual_pop set.

	* cpplib.c (cpp_get_token): Don't return a CPP_POP if the buffer
	has manual_pop set.

From-SVN: r28275
parent e428b1a8
Mon Jul 26 12:30:09 1999 Jason Merrill <jason@yorick.cygnus.com>
* cpplib.c (cpp_get_token): Don't return a CPP_POP if the buffer
has manual_pop set.
1999-07-26 Nathan Sidwell <nathan@acm.org>
* eh-common.h (__eh_matcher): Prototype correctly.
......
......@@ -2027,12 +2027,13 @@ cpp_get_token (pfile)
if (c == EOF)
{
handle_eof:
if (CPP_BUFFER (pfile)->seen_eof)
if (CPP_BUFFER (pfile)->manual_pop)
/* If we've been reading from redirected input, the
frontend will pop the buffer. */
return CPP_EOF;
else if (CPP_BUFFER (pfile)->seen_eof)
{
if (CPP_PREV_BUFFER (CPP_BUFFER (pfile)) == CPP_NULL_BUFFER (pfile)
/* If we've been reading from redirected input, the
frontend will pop the buffer. */
|| CPP_BUFFER (pfile)->manual_pop)
if (CPP_PREV_BUFFER (CPP_BUFFER (pfile)) == CPP_NULL_BUFFER (pfile))
return CPP_EOF;
cpp_pop_buffer (pfile);
......
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