Mercurial > emacs
changeset 25821:9a999c51f856
(scan_lisp_file): Fix typo causing infloop.
author | Dave Love <fx@gnu.org> |
---|---|
date | Mon, 27 Sep 1999 11:34:27 +0000 |
parents | a18595261196 |
children | 3a33e6b4847d |
files | lib-src/make-docfile.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lib-src/make-docfile.c Sun Sep 26 10:53:23 1999 +0000 +++ b/lib-src/make-docfile.c Mon Sep 27 11:34:27 1999 +0000 @@ -629,7 +629,7 @@ 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 == '#')