Function: rmail-previous-labeled-message
rmail-previous-labeled-message is an autoloaded, interactive and
byte-compiled function defined in rmailkwd.el.gz.
Signature
(rmail-previous-labeled-message N LABELS)
Documentation
Show previous message with one of the labels LABELS.
LABELS should be a comma-separated list of label names. If LABELS is empty, the last set of labels specified is used. With prefix argument N moves backward N messages with these labels.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mail/rmailkwd.el.gz
;; Motion on messages with keywords.
;;;###autoload
(defun rmail-previous-labeled-message (n labels)
"Show previous message with one of the labels LABELS.
LABELS should be a comma-separated list of label names.
If LABELS is empty, the last set of labels specified is used.
With prefix argument N moves backward N messages with these labels."
(interactive "p\nsMove to previous msg with labels: ")
(rmail-next-labeled-message (- n) labels))