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 {
|
||||
cont = false;
|
||||
if (*bp==COMMENT_CHAR && !quote) {
|
||||
bp = max(end-1, bp+1);
|
||||
/* bp = max(end-1, bp+1); */
|
||||
comment=true;
|
||||
}
|
||||
else {
|
||||
|
@ -421,8 +421,8 @@ getbuf(FILE * F)
|
|||
if (!comment) *(cp++) = *bp;
|
||||
eatwhite = (boolean)!quote;
|
||||
}
|
||||
++bp;
|
||||
}
|
||||
++bp;
|
||||
}
|
||||
start = false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue