aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lread.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c
index a753eb91868..4034085a38b 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -724,7 +724,10 @@ readevalloop (readcharfun, stream, sourcename, evalfun, printflag)
724 continue; 724 continue;
725 } 725 }
726 if (c < 0) break; 726 if (c < 0) break;
727 if (c == ' ' || c == '\t' || c == '\n' || c == '\f') continue; 727
728 /* Ignore whitespace here, so we can detect eof. */
729 if (c == ' ' || c == '\t' || c == '\n' || c == '\f' || c == '\r')
730 continue;
728 731
729 if (!NILP (Vpurify_flag) && c == '(') 732 if (!NILP (Vpurify_flag) && c == '(')
730 { 733 {