diff lib-src/make-docfile.c @ 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 89230444d638
children 134b57acef68
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 == '#')