aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-lex.c
diff options
context:
space:
mode:
authorDoug Evans <dje@gnu.org>1996-02-01 22:48:54 +0000
committerDoug Evans <dje@gnu.org>1996-02-01 22:48:54 +0000
commit79a8aaa8da6a4418f3b63bf90b62f95123779825 (patch)
tree6ca50e6e5fd6048f603854f7ad90401d7dc9d423 /gcc/c-lex.c
parent7ec6d4d920ec09e07bb9a6db64c0f5db761d788b (diff)
downloadgcc-79a8aaa8da6a4418f3b63bf90b62f95123779825.zip
gcc-79a8aaa8da6a4418f3b63bf90b62f95123779825.tar.gz
gcc-79a8aaa8da6a4418f3b63bf90b62f95123779825.tar.bz2
(check_newline): HANDLE_PRAGMA returns terminating char as result now.
From-SVN: r11155
Diffstat (limited to 'gcc/c-lex.c')
-rw-r--r--gcc/c-lex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c
index 51479be..26f3911 100644
--- a/gcc/c-lex.c
+++ b/gcc/c-lex.c
@@ -402,7 +402,7 @@ check_newline ()
return handle_sysv_pragma (finput, c);
#else /* !HANDLE_SYSV_PRAGMA */
#ifdef HANDLE_PRAGMA
- HANDLE_PRAGMA (finput, c);
+ return HANDLE_PRAGMA (finput, c);
#endif /* HANDLE_PRAGMA */
goto skipline;
#endif /* !HANDLE_SYSV_PRAGMA */