fix to fix
This commit is contained in:
parent
87c8b648fc
commit
0768c4d4f1
|
@ -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 == '/') {
|
||||
|
|
Loading…
Reference in a new issue