From: Richard M. Stallman Date: Thu, 10 Mar 1994 04:18:10 +0000 (+0000) Subject: (generate-file-autoloads): Don't ignore the line X-Git-Tag: emacs-19.34~9572 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ad9c7f2b76fa173b341fc02df238e7ad8f113153;p=emacs.git (generate-file-autoloads): Don't ignore the line after the form marked by a ;;;###autoload\n. --- 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)))