attempting to fix bug in the parser when breaking ; connets with a \

This commit is contained in:
Enno Rehling 2003-09-21 16:15:39 +00:00
parent 399e5aceb2
commit abbb7647bc
1 changed files with 2 additions and 2 deletions

View File

@ -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;
} }