br3392236: Don't treat \Space after \BackSlash as a sign for line continuation

In commit f1fe4fdeab I occasionally
made a \Space after \BackSlash being a sign of line continuation.

Fix it.

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov 2012-12-27 20:02:17 +04:00
parent 74ebbde14c
commit 490f85e73d

View File

@ -844,7 +844,7 @@ static char *read_line(void)
case '\\':
next = fgetc(istk->fp);
ungetc(next, istk->fp);
if (next == ' ' || next == '\r' || next == '\n') {
if (next == '\r' || next == '\n') {
cont = true;
nr_cont++;
continue;