(check_newline): Avoid unreachable statement when HANDLE_SYSV_PRAGMA

defined.

From-SVN: r7092
This commit is contained in:
Richard Kenner 1994-04-20 06:40:07 -04:00
parent a0fbc3a981
commit 9083509785
1 changed files with 2 additions and 1 deletions

View File

@ -398,11 +398,12 @@ check_newline ()
{
#ifdef HANDLE_SYSV_PRAGMA
return handle_sysv_pragma (finput, c);
#endif /* HANDLE_SYSV_PRAGMA */
#else /* !HANDLE_SYSV_PRAGMA */
#ifdef HANDLE_PRAGMA
HANDLE_PRAGMA (finput);
#endif /* HANDLE_PRAGMA */
goto skipline;
#endif /* !HANDLE_SYSV_PRAGMA */
}
}