comparison lisp/mail/rmailkwd.el @ 104907:6a35503cf20b

Put autoloads in rmail.el rather than loaddefs.el.
author Glenn Morris <rgm@gnu.org>
date Thu, 10 Sep 2009 06:18:23 +0000
parents 8b13a9b37672
children 1d1d5d9bd884
comparison
equal deleted inserted replaced
104906:7018aaffba60 104907:6a35503cf20b
157 (defun rmail-next-labeled-message (n labels) 157 (defun rmail-next-labeled-message (n labels)
158 "Show next message with one of the labels LABELS. 158 "Show next message with one of the labels LABELS.
159 LABELS should be a comma-separated list of label names. 159 LABELS should be a comma-separated list of label names.
160 If LABELS is empty, the last set of labels specified is used. 160 If LABELS is empty, the last set of labels specified is used.
161 With prefix argument N moves forward N messages with these labels." 161 With prefix argument N moves forward N messages with these labels."
162 ;; FIXME show the default in the prompt.
162 (interactive "p\nsMove to next msg with labels: ") 163 (interactive "p\nsMove to next msg with labels: ")
163 (if (string= labels "") 164 (if (string= labels "")
164 (setq labels rmail-last-multi-labels)) 165 (setq labels rmail-last-multi-labels))
165 (or labels 166 (or labels
166 (error "No labels to find have been specified previously")) 167 (error "No labels to find have been specified previously"))
186 (error "No following message with labels %s" labels) 187 (error "No following message with labels %s" labels)
187 (rmail-show-message-1 lastwin))))) 188 (rmail-show-message-1 lastwin)))))
188 189
189 (provide 'rmailkwd) 190 (provide 'rmailkwd)
190 191
192 ;; Local Variables:
193 ;; generated-autoload-file: "rmail.el"
194 ;; End:
195
191 ;; arch-tag: 1149979c-8e47-4333-9629-cf3dc887a6a7 196 ;; arch-tag: 1149979c-8e47-4333-9629-cf3dc887a6a7
192 ;;; rmailkwd.el ends here 197 ;;; rmailkwd.el ends here