diff options
| author | Gerd Moellmann | 2001-04-23 11:50:36 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-04-23 11:50:36 +0000 |
| commit | 23b809c2a7f08503b91628ece06939dedaa617de (patch) | |
| tree | 9d6c3b2528503a65e0d31399a35c3bbd61b43759 | |
| parent | 3c7e7ccb346297201fa75ff2ca41fea746065ddf (diff) | |
| download | emacs-23b809c2a7f08503b91628ece06939dedaa617de.tar.gz emacs-23b809c2a7f08503b91628ece06939dedaa617de.zip | |
Fix autoload cookies.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/emacs-lisp/checkdoc.el | 2 | ||||
| -rw-r--r-- | lisp/play/fortune.el | 12 | ||||
| -rw-r--r-- | lisp/progmodes/ebrowse.el | 12 | ||||
| -rw-r--r-- | lisp/textmodes/ispell.el | 2 |
5 files changed, 19 insertions, 14 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3fc5d2bdf94..507640f684c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-04-23 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * textmodes/ispell.el, emacs-lisp/checkdoc.el, | ||
| 4 | * progmodes/ebrowse.el, play/fortune.el: Fix autoload cookies. | ||
| 5 | |||
| 1 | 2001-04-23 Alex Schroeder <alex@gnu.org> | 6 | 2001-04-23 Alex Schroeder <alex@gnu.org> |
| 2 | 7 | ||
| 3 | * goto-addr.el: Instead of defining line-beginning-position and | 8 | * goto-addr.el: Instead of defining line-beginning-position and |
diff --git a/lisp/emacs-lisp/checkdoc.el b/lisp/emacs-lisp/checkdoc.el index a2bca2a9b47..5bc22cc19de 100644 --- a/lisp/emacs-lisp/checkdoc.el +++ b/lisp/emacs-lisp/checkdoc.el | |||
| @@ -899,7 +899,7 @@ Return nil if there are no more doc strings." | |||
| 899 | (skip-chars-forward " \n\t") | 899 | (skip-chars-forward " \n\t") |
| 900 | t)) | 900 | t)) |
| 901 | 901 | ||
| 902 | ;;; ###autoload | 902 | ;;;###autoload |
| 903 | (defun checkdoc-comments (&optional take-notes) | 903 | (defun checkdoc-comments (&optional take-notes) |
| 904 | "Find missing comment sections in the current Emacs Lisp file. | 904 | "Find missing comment sections in the current Emacs Lisp file. |
| 905 | Prefix argument TAKE-NOTES non-nil means to save warnings in a | 905 | Prefix argument TAKE-NOTES non-nil means to save warnings in a |
diff --git a/lisp/play/fortune.el b/lisp/play/fortune.el index c3e94eaaa37..0ae1a841f43 100644 --- a/lisp/play/fortune.el +++ b/lisp/play/fortune.el | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | ;;; fortune.el --- Use fortune to create signatures | 1 | ;;; fortune.el --- Use fortune to create signatures |
| 2 | ;; Copyright (C) 1999 Free Software Foundation, Inc. | 2 | ;; Copyright (C) 1999, 2001 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | ;; Author: Holger Schauer <Holger.Schauer@gmx.de> | 4 | ;; Author: Holger Schauer <Holger.Schauer@gmx.de> |
| 5 | ;; Keywords: games utils mail | 5 | ;; Keywords: games utils mail |
| @@ -160,7 +160,7 @@ If INTERACTIVE is non-nil, don't compile the fortune file afterwards." | |||
| 160 | "Fortune file to use: " | 160 | "Fortune file to use: " |
| 161 | fortune-dir nil nil ""))) | 161 | fortune-dir nil nil ""))) |
| 162 | 162 | ||
| 163 | ;;; ###autoload | 163 | ;;;###autoload |
| 164 | (defun fortune-add-fortune (string file) | 164 | (defun fortune-add-fortune (string file) |
| 165 | "Add STRING to a fortune file FILE. | 165 | "Add STRING to a fortune file FILE. |
| 166 | 166 | ||
| @@ -171,7 +171,7 @@ read the file name to use. Otherwise use the value of `fortune-file'." | |||
| 171 | (if current-prefix-arg (fortune-ask-file)))) | 171 | (if current-prefix-arg (fortune-ask-file)))) |
| 172 | (fortune-append string t file)) | 172 | (fortune-append string t file)) |
| 173 | 173 | ||
| 174 | ;;; ###autoload | 174 | ;;;###autoload |
| 175 | (defun fortune-from-region (beg end file) | 175 | (defun fortune-from-region (beg end file) |
| 176 | "Append the current region to a local fortune-like data file. | 176 | "Append the current region to a local fortune-like data file. |
| 177 | 177 | ||
| @@ -217,7 +217,7 @@ read the file name to use. Otherwise use the value of `fortune-file'." | |||
| 217 | 217 | ||
| 218 | ;;; ************** | 218 | ;;; ************** |
| 219 | ;;; Compile new database with strfile | 219 | ;;; Compile new database with strfile |
| 220 | ;;; ###autoload | 220 | ;;;###autoload |
| 221 | (defun fortune-compile (&optional file) | 221 | (defun fortune-compile (&optional file) |
| 222 | "Compile fortune file. | 222 | "Compile fortune file. |
| 223 | 223 | ||
| @@ -244,7 +244,7 @@ the value of `fortune-file'. This currently cannot handle directories." | |||
| 244 | 244 | ||
| 245 | ;;; ************** | 245 | ;;; ************** |
| 246 | ;;; Use fortune for signature | 246 | ;;; Use fortune for signature |
| 247 | ;;; ###autoload | 247 | ;;;###autoload |
| 248 | (defun fortune-to-signature (&optional file) | 248 | (defun fortune-to-signature (&optional file) |
| 249 | "Create signature from output of the fortune program. | 249 | "Create signature from output of the fortune program. |
| 250 | 250 | ||
| @@ -293,7 +293,7 @@ when supplied, specifies the file to choose the fortune from." | |||
| 293 | (concat fortune-program-options fort-file))))) | 293 | (concat fortune-program-options fort-file))))) |
| 294 | 294 | ||
| 295 | 295 | ||
| 296 | ;;; ###autoload | 296 | ;;;###autoload |
| 297 | (defun fortune (&optional file) | 297 | (defun fortune (&optional file) |
| 298 | "Display a fortune cookie. | 298 | "Display a fortune cookie. |
| 299 | 299 | ||
diff --git a/lisp/progmodes/ebrowse.el b/lisp/progmodes/ebrowse.el index e767bfd831d..4b62a90e115 100644 --- a/lisp/progmodes/ebrowse.el +++ b/lisp/progmodes/ebrowse.el | |||
| @@ -3822,7 +3822,7 @@ With prefix arg, process files of marked classes only." | |||
| 3822 | (ebrowse-tags-loop-continue 'first-time)) | 3822 | (ebrowse-tags-loop-continue 'first-time)) |
| 3823 | 3823 | ||
| 3824 | 3824 | ||
| 3825 | ;;; ###autoload | 3825 | ;;;###autoload |
| 3826 | (defun ebrowse-tags-search-member-use (&optional fix-name) | 3826 | (defun ebrowse-tags-search-member-use (&optional fix-name) |
| 3827 | "Search for call sites of a member. | 3827 | "Search for call sites of a member. |
| 3828 | If FIX-NAME is specified, search uses of that member. | 3828 | If FIX-NAME is specified, search uses of that member. |
| @@ -3926,7 +3926,7 @@ Positions in buffers that have no file names are not saved." | |||
| 3926 | ebrowse-position-stack)))) | 3926 | ebrowse-position-stack)))) |
| 3927 | 3927 | ||
| 3928 | 3928 | ||
| 3929 | ;;; ###autoload | 3929 | ;;;###autoload |
| 3930 | (defun ebrowse-back-in-position-stack (arg) | 3930 | (defun ebrowse-back-in-position-stack (arg) |
| 3931 | "Move backward in the position stack. | 3931 | "Move backward in the position stack. |
| 3932 | Prefix arg ARG says how much." | 3932 | Prefix arg ARG says how much." |
| @@ -3934,7 +3934,7 @@ Prefix arg ARG says how much." | |||
| 3934 | (ebrowse-move-in-position-stack (max 1 arg))) | 3934 | (ebrowse-move-in-position-stack (max 1 arg))) |
| 3935 | 3935 | ||
| 3936 | 3936 | ||
| 3937 | ;;; ###autoload | 3937 | ;;;###autoload |
| 3938 | (defun ebrowse-forward-in-position-stack (arg) | 3938 | (defun ebrowse-forward-in-position-stack (arg) |
| 3939 | "Move forward in the position stack. | 3939 | "Move forward in the position stack. |
| 3940 | Prefix arg ARG says how much." | 3940 | Prefix arg ARG says how much." |
| @@ -4019,7 +4019,7 @@ Runs the hook `ebrowse-electric-position-mode-hook'." | |||
| 4019 | (setq buffer-read-only t)) | 4019 | (setq buffer-read-only t)) |
| 4020 | 4020 | ||
| 4021 | 4021 | ||
| 4022 | ;;; ###autoload | 4022 | ;;;###autoload |
| 4023 | (defun ebrowse-electric-position-menu () | 4023 | (defun ebrowse-electric-position-menu () |
| 4024 | "List positions in the position stack in an electric buffer." | 4024 | "List positions in the position stack in an electric buffer." |
| 4025 | (interactive) | 4025 | (interactive) |
| @@ -4121,7 +4121,7 @@ Installed on `local-write-file-hooks'." | |||
| 4121 | t) | 4121 | t) |
| 4122 | 4122 | ||
| 4123 | 4123 | ||
| 4124 | ;;; ###autoload | 4124 | ;;;###autoload |
| 4125 | (defun ebrowse-save-tree () | 4125 | (defun ebrowse-save-tree () |
| 4126 | "Save current tree in same file it was loaded from." | 4126 | "Save current tree in same file it was loaded from." |
| 4127 | (interactive) | 4127 | (interactive) |
| @@ -4172,7 +4172,7 @@ Otherwise, FILE-NAME specifies the file to save the tree in." | |||
| 4172 | 4172 | ||
| 4173 | ;;; Statistics | 4173 | ;;; Statistics |
| 4174 | 4174 | ||
| 4175 | ;;; ###autoload | 4175 | ;;;###autoload |
| 4176 | (defun ebrowse-statistics () | 4176 | (defun ebrowse-statistics () |
| 4177 | "Display statistics for a class tree." | 4177 | "Display statistics for a class tree." |
| 4178 | (interactive) | 4178 | (interactive) |
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index eda0c7d07cc..e8d872027db 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el | |||
| @@ -1477,7 +1477,7 @@ Word syntax described by `ispell-dictionary-alist' (which see)." | |||
| 1477 | ;;; a value or a list, whose value is the state of whether the | 1477 | ;;; a value or a list, whose value is the state of whether the |
| 1478 | ;;; dictionary needs to be saved. | 1478 | ;;; dictionary needs to be saved. |
| 1479 | 1479 | ||
| 1480 | ;;; ###autoload | 1480 | ;;;###autoload |
| 1481 | (defun ispell-pdict-save (&optional no-query force-save) | 1481 | (defun ispell-pdict-save (&optional no-query force-save) |
| 1482 | "Check to see if the personal dictionary has been modified. | 1482 | "Check to see if the personal dictionary has been modified. |
| 1483 | If so, ask if it needs to be saved." | 1483 | If so, ask if it needs to be saved." |