forked from github/server
attempting to fix bug in the parser when breaking ; connets with a \
This commit is contained in:
parent
399e5aceb2
commit
abbb7647bc
|
@ -408,7 +408,7 @@ getbuf(FILE * F)
|
||||||
} else {
|
} else {
|
||||||
cont = false;
|
cont = false;
|
||||||
if (*bp==COMMENT_CHAR && !quote) {
|
if (*bp==COMMENT_CHAR && !quote) {
|
||||||
bp = max(end-1, bp+1);
|
/* bp = max(end-1, bp+1); */
|
||||||
comment=true;
|
comment=true;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -421,8 +421,8 @@ getbuf(FILE * F)
|
||||||
if (!comment) *(cp++) = *bp;
|
if (!comment) *(cp++) = *bp;
|
||||||
eatwhite = (boolean)!quote;
|
eatwhite = (boolean)!quote;
|
||||||
}
|
}
|
||||||
++bp;
|
|
||||||
}
|
}
|
||||||
|
++bp;
|
||||||
}
|
}
|
||||||
start = false;
|
start = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue