Function: rmail-summary-next-labeled-message

rmail-summary-next-labeled-message is an interactive and byte-compiled function defined in rmailsum.el.gz.

Signature

(rmail-summary-next-labeled-message N LABELS)

Documentation

Show next message with LABELS. Defaults to last labels used.

With prefix argument N moves forward N messages with these labels.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rmailsum.el.gz
(defun rmail-summary-next-labeled-message (n labels)
  "Show next message with LABELS.  Defaults to last labels used.
With prefix argument N moves forward N messages with these labels."
  (interactive "p\nsMove to next msg with labels: ")
  (let (msg)
    (with-current-buffer rmail-buffer
      (rmail-next-labeled-message n labels)
      (setq msg rmail-current-message))
    (rmail-summary-goto-msg msg)))