aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1996-09-27 00:33:39 +0000
committerRichard M. Stallman1996-09-27 00:33:39 +0000
commit372a91d780f6a5cdc97d3245f9935024222fdf8a (patch)
treef8d6ba1983a4e47738f1096c6ad1eeda23359f86
parent523abd28e7ba7bd76a7a6aa1cb1e326b1d1a12ce (diff)
downloademacs-372a91d780f6a5cdc97d3245f9935024222fdf8a.tar.gz
emacs-372a91d780f6a5cdc97d3245f9935024222fdf8a.zip
Add many autoload cookies.
-rw-r--r--lisp/mail/rmailsort.el9
-rw-r--r--lisp/mail/undigest.el2
2 files changed, 10 insertions, 1 deletions
diff --git a/lisp/mail/rmailsort.el b/lisp/mail/rmailsort.el
index 53974220c20..4066890fea9 100644
--- a/lisp/mail/rmailsort.el
+++ b/lisp/mail/rmailsort.el
@@ -3,7 +3,7 @@
3;; Copyright (C) 1990, 1993, 1994 Free Software Foundation, Inc. 3;; Copyright (C) 1990, 1993, 1994 Free Software Foundation, Inc.
4 4
5;; Author: Masanobu UMEDA <umerin@mse.kyutech.ac.jp> 5;; Author: Masanobu UMEDA <umerin@mse.kyutech.ac.jp>
6;; Version: $Header: /home/gd/gnu/emacs/19.0/lisp/RCS/rmailsort.el,v 1.23 1996/01/14 14:30:11 kwzh Exp kwzh $ 6;; Version: $Header: /home/fsf/rms/e19/lisp/RCS/rmailsort.el,v 1.24 1996/01/20 07:41:37 kwzh Exp rms $
7;; Keywords: mail 7;; Keywords: mail
8 8
9;; This file is part of GNU Emacs. 9;; This file is part of GNU Emacs.
@@ -34,6 +34,7 @@
34 34
35;; Sorting messages in Rmail buffer 35;; Sorting messages in Rmail buffer
36 36
37;;;###autoload
37(defun rmail-sort-by-date (reverse) 38(defun rmail-sort-by-date (reverse)
38 "Sort messages of current Rmail file by date. 39 "Sort messages of current Rmail file by date.
39If prefix argument REVERSE is non-nil, sort them in reverse order." 40If prefix argument REVERSE is non-nil, sort them in reverse order."
@@ -44,6 +45,7 @@ If prefix argument REVERSE is non-nil, sort them in reverse order."
44 (rmail-make-date-sortable 45 (rmail-make-date-sortable
45 (rmail-fetch-field msg "Date")))))) 46 (rmail-fetch-field msg "Date"))))))
46 47
48;;;###autoload
47(defun rmail-sort-by-subject (reverse) 49(defun rmail-sort-by-subject (reverse)
48 "Sort messages of current Rmail file by subject. 50 "Sort messages of current Rmail file by subject.
49If prefix argument REVERSE is non-nil, sort them in reverse order." 51If prefix argument REVERSE is non-nil, sort them in reverse order."
@@ -58,6 +60,7 @@ If prefix argument REVERSE is non-nil, sort them in reverse order."
58 (substring key (match-end 0)) 60 (substring key (match-end 0))
59 key)))))) 61 key))))))
60 62
63;;;###autoload
61(defun rmail-sort-by-author (reverse) 64(defun rmail-sort-by-author (reverse)
62 "Sort messages of current Rmail file by author. 65 "Sort messages of current Rmail file by author.
63If prefix argument REVERSE is non-nil, sort them in reverse order." 66If prefix argument REVERSE is non-nil, sort them in reverse order."
@@ -70,6 +73,7 @@ If prefix argument REVERSE is non-nil, sort them in reverse order."
70 (or (rmail-fetch-field msg "From") 73 (or (rmail-fetch-field msg "From")
71 (rmail-fetch-field msg "Sender") ""))))))) 74 (rmail-fetch-field msg "Sender") "")))))))
72 75
76;;;###autoload
73(defun rmail-sort-by-recipient (reverse) 77(defun rmail-sort-by-recipient (reverse)
74 "Sort messages of current Rmail file by recipient. 78 "Sort messages of current Rmail file by recipient.
75If prefix argument REVERSE is non-nil, sort them in reverse order." 79If prefix argument REVERSE is non-nil, sort them in reverse order."
@@ -83,6 +87,7 @@ If prefix argument REVERSE is non-nil, sort them in reverse order."
83 (rmail-fetch-field msg "Apparently-To") "") 87 (rmail-fetch-field msg "Apparently-To") "")
84 )))))) 88 ))))))
85 89
90;;;###autoload
86(defun rmail-sort-by-correspondent (reverse) 91(defun rmail-sort-by-correspondent (reverse)
87 "Sort messages of current Rmail file by other correspondent. 92 "Sort messages of current Rmail file by other correspondent.
88If prefix argument REVERSE is non-nil, sort them in reverse order." 93If prefix argument REVERSE is non-nil, sort them in reverse order."
@@ -104,6 +109,7 @@ If prefix argument REVERSE is non-nil, sort them in reverse order."
104 (setq fields (cdr fields))) 109 (setq fields (cdr fields)))
105 ans)) 110 ans))
106 111
112;;;###autoload
107(defun rmail-sort-by-lines (reverse) 113(defun rmail-sort-by-lines (reverse)
108 "Sort messages of current Rmail file by number of lines. 114 "Sort messages of current Rmail file by number of lines.
109If prefix argument REVERSE is non-nil, sort them in reverse order." 115If prefix argument REVERSE is non-nil, sort them in reverse order."
@@ -114,6 +120,7 @@ If prefix argument REVERSE is non-nil, sort them in reverse order."
114 (count-lines (rmail-msgbeg msg) 120 (count-lines (rmail-msgbeg msg)
115 (rmail-msgend msg)))))) 121 (rmail-msgend msg))))))
116 122
123;;;###autoload
117(defun rmail-sort-by-keywords (reverse labels) 124(defun rmail-sort-by-keywords (reverse labels)
118 "Sort messages of current Rmail file by labels. 125 "Sort messages of current Rmail file by labels.
119If prefix argument REVERSE is non-nil, sort them in reverse order. 126If prefix argument REVERSE is non-nil, sort them in reverse order.
diff --git a/lisp/mail/undigest.el b/lisp/mail/undigest.el
index c2d2414394a..3a3319ec1b5 100644
--- a/lisp/mail/undigest.el
+++ b/lisp/mail/undigest.el
@@ -30,6 +30,7 @@
30 30
31(require 'rmail) 31(require 'rmail)
32 32
33;;;###autoload
33(defun undigestify-rmail-message () 34(defun undigestify-rmail-message ()
34 "Break up a digest message into its constituent messages. 35 "Break up a digest message into its constituent messages.
35Leaves original message, deleted, before the undigestified messages." 36Leaves original message, deleted, before the undigestified messages."
@@ -132,6 +133,7 @@ Leaves original message, deleted, before the undigestified messages."
132 (delete-region (point-min) (point-max)) 133 (delete-region (point-min) (point-max))
133 (rmail-show-message rmail-current-message)))))) 134 (rmail-show-message rmail-current-message))))))
134 135
136;;;###autoload
135(defun unforward-rmail-message () 137(defun unforward-rmail-message ()
136 "Extract a forwarded message from the containing message. 138 "Extract a forwarded message from the containing message.
137This puts the forwarded message into a separate rmail message 139This puts the forwarded message into a separate rmail message