Function: rmail-previous-undeleted-message
rmail-previous-undeleted-message is an interactive and byte-compiled
function defined in rmail.el.gz.
Signature
(rmail-previous-undeleted-message N)
Documentation
Show previous non-deleted message.
With prefix argument N, moves backward N non-deleted messages, or forward if N is negative.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mail/rmail.el.gz
(defun rmail-previous-undeleted-message (n)
"Show previous non-deleted message.
With prefix argument N, moves backward N non-deleted messages,
or forward if N is negative."
(interactive "p")
(rmail-next-undeleted-message (- n)))