diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-08-15 05:32:53 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-08-15 05:32:53 +0000 |
commit | b60c9da773408d11a4414178a7dba5fde0642eb6 (patch) | |
tree | 642b6ac5a0495a56e016240062e68f87720edc45 /gcc/c-lex.c | |
parent | e47dbc7812f3e33338447feecdaf84dc4996e689 (diff) | |
download | gcc-b60c9da773408d11a4414178a7dba5fde0642eb6.tar.gz |
* c-lex.c (check_newline): Pass finput again to HANDLE_PRAGMA.
Bring over from the FSF.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14802 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-lex.c')
-rw-r--r-- | gcc/c-lex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c index 586fc10356c..fd0dd90393a 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -560,7 +560,7 @@ check_newline () token = yylex (); if (token != IDENTIFIER) goto skipline; - if (HANDLE_PRAGMA (yylval.ttype)) + if (HANDLE_PRAGMA (finput, yylval.ttype)) { c = GETC (); return c; |