Commit 8975416c by J"orn Rennecke Committed by Jason Merrill

lex.c (real_yylex): Don't use getc directly.

Thu Aug 21 22:25:46 1997  J"orn Rennecke <amylaar@cygnus.co.uk>

	* lex.c (real_yylex): Don't use getc directly.

From-SVN: r14876
parent f1e18282
Thu Aug 21 22:25:46 1997 J"orn Rennecke <amylaar@cygnus.co.uk>
* lex.c (real_yylex): Don't use getc directly.
Wed Aug 20 17:25:08 1997 Jason Merrill <jason@yorick.cygnus.com>
* call.c (is_subseq): Don't try to be clever.
......
......@@ -3141,7 +3141,7 @@ real_yylex ()
p = extend_token_buffer (p);
*p++ = c;
c = getc (finput);
c = getch ();
}
if (linemode && c == '\n')
......@@ -3652,7 +3652,7 @@ real_yylex ()
p = extend_token_buffer (p);
*p++ = c;
*p = 0;
c = getc (finput);
c = getch ();
}
/* The second argument, machine_mode, of REAL_VALUE_ATOF
......@@ -3760,7 +3760,7 @@ real_yylex ()
if (p >= token_buffer + maxtoken - 3)
p = extend_token_buffer (p);
*p++ = c;
c = getc (finput);
c = getch ();
}
/* If the constant is not long long and it won't fit in an
......
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