summaryrefslogtreecommitdiff
path: root/preproc.c
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@gmail.com>2012-12-27 20:02:17 +0400
committerCyrill Gorcunov <gorcunov@gmail.com>2012-12-27 20:04:28 +0400
commit490f85e73d8bca15ada1c0bacc101c136e5d9cee (patch)
tree8ee0af831028a3ee8e0c6ce9eaa9850ad2b6c7e2 /preproc.c
parent74ebbde14c08a79cf4d975770732ac279389213c (diff)
downloadnasm-490f85e73d8bca15ada1c0bacc101c136e5d9cee.tar.gz
nasm-490f85e73d8bca15ada1c0bacc101c136e5d9cee.tar.bz2
nasm-490f85e73d8bca15ada1c0bacc101c136e5d9cee.zip
br3392236: Don't treat \Space after \BackSlash as a sign for line continuation
In commit f1fe4fdeabeaf2e5e4d02ef43beeb09a6fbfed1b I occasionally made a \Space after \BackSlash being a sign of line continuation. Fix it. Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
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;