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:
parent
6c57709828
commit
7e6972e92c
1 changed files with 1 additions and 1 deletions
|
|
@ -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 == '#')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue