1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

(scan_lisp_file): Fix typo causing infloop.

This commit is contained in:
Dave Love 1999-09-27 11:34:27 +00:00
parent 6c57709828
commit 7e6972e92c

View file

@ -629,7 +629,7 @@ scan_lisp_file (filename, mode)
continue; continue;
} }
/* Skip the line break. */ /* Skip the line break. */
while (c == '\n' || c != '\r') while (c == '\n' || c == '\r')
c = getc (infile); c = getc (infile);
/* Detect a dynamic doc string and save it for the next expression. */ /* Detect a dynamic doc string and save it for the next expression. */
if (c == '#') if (c == '#')