From: ceriel Date: Tue, 15 Jan 1991 11:51:40 +0000 (+0000) Subject: in SkipToNewLine(), check for TOKSEP X-Git-Tag: release-5-5~1293 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=9e970befed5fe98ba49b288aca4de93b7321199c;p=ack.git in SkipToNewLine(), check for TOKSEP --- diff --git a/lang/cem/cpp.ansi/skip.c b/lang/cem/cpp.ansi/skip.c index b890cda1e..93508bf7f 100644 --- a/lang/cem/cpp.ansi/skip.c +++ b/lang/cem/cpp.ansi/skip.c @@ -79,6 +79,9 @@ SkipToNewLine() continue; } } + else if (ch == TOKSEP && InputLevel) { + continue; + } if (!is_wsp(ch)) garbage = 1; }