(scan_lisp_file): Fix typo causing infloop.
This commit is contained in:
parent
6c57709828
commit
7e6972e92c
1 changed files with 1 additions and 1 deletions
|
@ -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 == '#')
|
||||
|
|
Loading…
Add table
Reference in a new issue