diff options
| author | Richard M. Stallman | 1994-03-10 04:18:10 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-03-10 04:18:10 +0000 |
| commit | ad9c7f2b76fa173b341fc02df238e7ad8f113153 (patch) | |
| tree | fc180355c60bc936a46698bbeed0a9bb6108bfdb | |
| parent | 966bcdddf199f8aed6d65ee85a24e5dec5fa39d7 (diff) | |
| download | emacs-ad9c7f2b76fa173b341fc02df238e7ad8f113153.tar.gz emacs-ad9c7f2b76fa173b341fc02df238e7ad8f113153.zip | |
(generate-file-autoloads): Don't ignore the line
after the form marked by a ;;;###autoload\n.
| -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." | |||
| 158 | (if (eolp) | 158 | (if (eolp) |
| 159 | ;; Read the next form and make an autoload. | 159 | ;; Read the next form and make an autoload. |
| 160 | (let* ((form (prog1 (read (current-buffer)) | 160 | (let* ((form (prog1 (read (current-buffer)) |
| 161 | (forward-line 1))) | 161 | (or (bolp) (forward-line 1)))) |
| 162 | (autoload (make-autoload form load-name)) | 162 | (autoload (make-autoload form load-name)) |
| 163 | (doc-string-elt (get (car-safe form) | 163 | (doc-string-elt (get (car-safe form) |
| 164 | 'doc-string-elt))) | 164 | 'doc-string-elt))) |