Function: rmail-summary-delete-backward

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

Signature

(rmail-summary-delete-backward &optional COUNT)

Documentation

Delete this message and move to previous nondeleted one.

Deleted messages stay in the file until the M-x rmail-expunge (rmail-expunge) command is given. A prefix argument serves as a repeat count; a negative argument means to delete and move forward.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rmailsum.el.gz
(defun rmail-summary-delete-backward (&optional count)
  "Delete this message and move to previous nondeleted one.
Deleted messages stay in the file until the \\[rmail-expunge] command is given.
A prefix argument serves as a repeat count;
a negative argument means to delete and move forward."
  (interactive "p")
  (rmail-summary-delete-forward (- count)))