fix to fix
This commit is contained in:
@@ -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 == '/') {
|
||||||
|
|||||||
Reference in New Issue
Block a user