diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2012-12-27 20:02:17 +0400 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2012-12-27 20:04:28 +0400 |
commit | 490f85e73d8bca15ada1c0bacc101c136e5d9cee (patch) | |
tree | 8ee0af831028a3ee8e0c6ce9eaa9850ad2b6c7e2 /preproc.c | |
parent | 74ebbde14c08a79cf4d975770732ac279389213c (diff) | |
download | nasm-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |