From 9ec36da574f8272705a3ead59bbd289f23793429 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Mon, 29 Jun 1998 15:40:49 -0600 Subject: * Merge from gcc2 June 9, 1998 snapshot. See ChangeLog.13 for details. From-SVN: r20808 --- gcc/c-lex.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gcc/c-lex.c') diff --git a/gcc/c-lex.c b/gcc/c-lex.c index adc70fa..c33ade5 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -544,6 +544,11 @@ check_newline () token = yylex (); if (token != IDENTIFIER) goto skipline; + if (nextchar >= 0) + c = nextchar, nextchar = -1; + else + c = GETC (); + ungetc (c, finput); if (HANDLE_PRAGMA (finput, yylval.ttype)) { c = GETC (); -- cgit v1.1