diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-03-10 04:18:10 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-03-10 04:18:10 +0000 |
commit | ad9c7f2b76fa173b341fc02df238e7ad8f113153 (patch) | |
tree | fc180355c60bc936a46698bbeed0a9bb6108bfdb /lisp/emacs-lisp | |
parent | 966bcdddf199f8aed6d65ee85a24e5dec5fa39d7 (diff) | |
download | emacs-ad9c7f2b76fa173b341fc02df238e7ad8f113153.tar.gz emacs-ad9c7f2b76fa173b341fc02df238e7ad8f113153.tar.bz2 emacs-ad9c7f2b76fa173b341fc02df238e7ad8f113153.zip |
(generate-file-autoloads): Don't ignore the line
after the form marked by a ;;;###autoload\n.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/autoload.el | 2 |
1 files changed, 1 insertions, 1 deletions
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))) |