fix to fix

This commit is contained in:
ceriel 1988-07-29 19:22:48 +00:00
parent 87c8b648fc
commit 0768c4d4f1

View file

@ -21,9 +21,13 @@ skipspaces(ch, skipnl)
non-space character.
*/
for (;;) {
while (class(ch) == STSKIP || (skipnl && class(ch) == STNL))
while (class(ch) == STSKIP)
LoadChar(ch);
if (skipnl && class(ch) == STNL) {
LoadChar(ch);
++LineNumber;
continue;
}
/* How about "\\\n"????????? */
if (ch == '/') {