summaryrefslogtreecommitdiff
path: root/preproc.c
diff options
context:
space:
mode:
Diffstat (limited to 'preproc.c')
-rw-r--r--preproc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/preproc.c b/preproc.c
index 8c5bf7a..9d65917 100644
--- a/preproc.c
+++ b/preproc.c
@@ -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;