diff options
| author | Juanma Barranquero | 2005-10-11 10:45:59 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-10-11 10:45:59 +0000 |
| commit | ac644d50c07b7bcae616e72349057343f4f1204a (patch) | |
| tree | 2588ead1657bfcfa0b0caabf9c7a96328179b9d9 | |
| parent | 2d4713aa66331fd3067ce46409dcd3f8e9f10218 (diff) | |
| download | emacs-ac644d50c07b7bcae616e72349057343f4f1204a.tar.gz emacs-ac644d50c07b7bcae616e72349057343f4f1204a.zip | |
(update-directory-autoloads): Doc fix.
(autoload-print-form-outbuf): Add docstring.
| -rw-r--r-- | lisp/emacs-lisp/autoload.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el index 3cd6fe53bad..b14a556e02d 100644 --- a/lisp/emacs-lisp/autoload.el +++ b/lisp/emacs-lisp/autoload.el | |||
| @@ -175,7 +175,8 @@ markers before we call `read'." | |||
| 175 | (goto-char (point-min)) | 175 | (goto-char (point-min)) |
| 176 | (read (current-buffer)))))) | 176 | (read (current-buffer)))))) |
| 177 | 177 | ||
| 178 | (defvar autoload-print-form-outbuf) | 178 | (defvar autoload-print-form-outbuf nil |
| 179 | "Buffer which gets the output of `autoload-print-form'.") | ||
| 179 | 180 | ||
| 180 | (defun autoload-print-form (form) | 181 | (defun autoload-print-form (form) |
| 181 | "Print FORM such that `make-docfile' will find the docstrings. | 182 | "Print FORM such that `make-docfile' will find the docstrings. |
| @@ -492,7 +493,7 @@ Autoload section for %s is up to date." | |||
| 492 | (defun update-directory-autoloads (&rest dirs) | 493 | (defun update-directory-autoloads (&rest dirs) |
| 493 | "\ | 494 | "\ |
| 494 | Update loaddefs.el with all the current autoloads from DIRS, and no old ones. | 495 | Update loaddefs.el with all the current autoloads from DIRS, and no old ones. |
| 495 | This uses `update-file-autoloads' (which see) do its work. | 496 | This uses `update-file-autoloads' (which see) to do its work. |
| 496 | In an interactive call, you must give one argument, the name | 497 | In an interactive call, you must give one argument, the name |
| 497 | of a single directory. In a call from Lisp, you can supply multiple | 498 | of a single directory. In a call from Lisp, you can supply multiple |
| 498 | directories as separate arguments, but this usage is discouraged. | 499 | directories as separate arguments, but this usage is discouraged. |