From ad9c7f2b76fa173b341fc02df238e7ad8f113153 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 10 Mar 1994 04:18:10 +0000 Subject: [PATCH] (generate-file-autoloads): Don't ignore the line after the form marked by a ;;;###autoload\n. --- lisp/emacs-lisp/autoload.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el index 22d06cc20f0..b610444fd11 100644 --- a/lisp/emacs-lisp/autoload.el +++ b/lisp/emacs-lisp/autoload.el @@ -158,7 +158,7 @@ are used." (if (eolp) ;; Read the next form and make an autoload. (let* ((form (prog1 (read (current-buffer)) - (forward-line 1))) + (or (bolp) (forward-line 1)))) (autoload (make-autoload form load-name)) (doc-string-elt (get (car-safe form) 'doc-string-elt))) -- 2.39.5