(scan_decls): After seeing an extern variable declaration...

(scan_decls):  After seeing an extern variable
declaration, goto new_statement to read a new token, rather
than going to handle_statement (which uses the current token).

From-SVN: r6037
This commit is contained in:
Richard Stallman 1993-11-08 03:09:05 +00:00
parent 4b7bc656a7
commit db025de86e
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ scan_decls (fp)
else if (nextc == ';' && saw_extern)
{
recognized_extern (buf.base, rtype.base);
goto handle_statement;
goto new_statement;
}
else
ungetc (nextc, fp);