Function: rmail-summary-previous-msg

rmail-summary-previous-msg is an interactive and byte-compiled function defined in rmailsum.el.gz.

Signature

(rmail-summary-previous-msg &optional NUMBER)

Documentation

Display previous non-deleted msg from rmail file.

With optional prefix argument NUMBER, moves backward this number of non-deleted messages.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rmailsum.el.gz
(defun rmail-summary-previous-msg (&optional number)
  "Display previous non-deleted msg from rmail file.
With optional prefix argument NUMBER, moves backward this number of
non-deleted messages."
  (interactive "p")
  (rmail-summary-next-msg (- (or number 1))))