From abbb7647bcc679ed0f77240dfcfc2abd6ba98eda Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sun, 21 Sep 2003 16:15:39 +0000 Subject: [PATCH] attempting to fix bug in the parser when breaking ; connets with a \ --- src/common/kernel/save.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/kernel/save.c b/src/common/kernel/save.c index f7c7f8fb1..0a83bc507 100644 --- a/src/common/kernel/save.c +++ b/src/common/kernel/save.c @@ -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; }