aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/lread.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lread.c b/src/lread.c
index 0b7fd9067dc..d22011be7c8 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -784,6 +784,8 @@ lisp_file_lexically_bound_p (Lisp_Object readcharfun)
784 while (ch != '\n' && ch != EOF) 784 while (ch != '\n' && ch != EOF)
785 ch = READCHAR; 785 ch = READCHAR;
786 if (ch == '\n') ch = READCHAR; 786 if (ch == '\n') ch = READCHAR;
787 /* It is OK to leave the position after a #! line, since
788 that is what read1 does. */
787 } 789 }
788 790
789 if (ch != ';') 791 if (ch != ';')