(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;
}
/* Skip the line break. */
while (c == '\n' || c != '\r')
while (c == '\n' || c == '\r')
c = getc (infile);
/* Detect a dynamic doc string and save it for the next expression. */
if (c == '#')