fix to fix
This commit is contained in:
parent
87c8b648fc
commit
0768c4d4f1
1 changed files with 6 additions and 2 deletions
|
@ -21,9 +21,13 @@ skipspaces(ch, skipnl)
|
||||||
non-space character.
|
non-space character.
|
||||||
*/
|
*/
|
||||||
for (;;) {
|
for (;;) {
|
||||||
while (class(ch) == STSKIP || (skipnl && class(ch) == STNL))
|
while (class(ch) == STSKIP)
|
||||||
LoadChar(ch);
|
LoadChar(ch);
|
||||||
|
if (skipnl && class(ch) == STNL) {
|
||||||
|
LoadChar(ch);
|
||||||
|
++LineNumber;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
/* How about "\\\n"????????? */
|
/* How about "\\\n"????????? */
|
||||||
|
|
||||||
if (ch == '/') {
|
if (ch == '/') {
|
||||||
|
|
Loading…
Reference in a new issue