From a85db682710c7435e1093844491b4caa35aee90e Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Fri, 27 Feb 2009 10:23:58 +0000 Subject: 26622: improve comments within $(...) and add test --- Src/lex.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Src/lex.c') diff --git a/Src/lex.c b/Src/lex.c index 6e14612f7..466447963 100644 --- a/Src/lex.c +++ b/Src/lex.c @@ -1813,7 +1813,7 @@ skipcomm(void) c = hgetc(); if (itok(c) || lexstop) break; - iswhite = isep(c); + iswhite = inblank(c); switch (c) { case '(': pct++; @@ -1861,6 +1861,7 @@ skipcomm(void) add(c); while ((c = hgetc()) != '\n' && !lexstop) add(c); + iswhite = 1; } break; } -- cgit 1.4.1