diff options
| author | Roland McGrath | 1993-06-16 22:08:23 +0000 |
|---|---|---|
| committer | Roland McGrath | 1993-06-16 22:08:23 +0000 |
| commit | d08589bfd1ba9ffcd36ba11377196510bd47a91a (patch) | |
| tree | 29a27959098037daee63f9c4694037316a818c0f | |
| parent | 73d615812fb95b0cc79dad7c7c574a8b0d362ea4 (diff) | |
| download | emacs-d08589bfd1ba9ffcd36ba11377196510bd47a91a.tar.gz emacs-d08589bfd1ba9ffcd36ba11377196510bd47a91a.zip | |
(generate-autoload-cookie, update-autoloads-here): Doc fixes.
| -rw-r--r-- | lisp/emacs-lisp/autoload.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el index 364289d1df7..011931c7808 100644 --- a/lisp/emacs-lisp/autoload.el +++ b/lisp/emacs-lisp/autoload.el | |||
| @@ -51,8 +51,8 @@ Returns nil if FORM is not a defun or defmacro." | |||
| 51 | nil))) | 51 | nil))) |
| 52 | 52 | ||
| 53 | (defconst generate-autoload-cookie ";;;###autoload" | 53 | (defconst generate-autoload-cookie ";;;###autoload" |
| 54 | "Magic comment that tells \\[update-file-autoloads] | 54 | "Magic comment indicating the following form should be autoloaded. |
| 55 | to make the following form into an autoload. This string should be | 55 | Used by \\[update-file-autoloads]. This string should be |
| 56 | meaningless to Lisp (e.g., a comment). | 56 | meaningless to Lisp (e.g., a comment). |
| 57 | 57 | ||
| 58 | This string is used: | 58 | This string is used: |
| @@ -277,8 +277,8 @@ Then do \\[exit-recursive-edit]." | |||
| 277 | 277 | ||
| 278 | ;;;###autoload | 278 | ;;;###autoload |
| 279 | (defun update-autoloads-here () | 279 | (defun update-autoloads-here () |
| 280 | "Update the sections of the current buffer generated by | 280 | "\ |
| 281 | \\[update-file-autoloads]." | 281 | Update sections of the current buffer generated by \\[update-file-autoloads]." |
| 282 | (interactive) | 282 | (interactive) |
| 283 | (let ((generated-autoload-file (buffer-file-name))) | 283 | (let ((generated-autoload-file (buffer-file-name))) |
| 284 | (save-excursion | 284 | (save-excursion |