Mercurial > emacs
changeset 17484:3303fa112347
(rmail-summary-delete-forward): Argument is now a repeat count.
(rmail-summary-delete-backward): Corresponding changes.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 16 Apr 1997 00:56:40 +0000 |
parents | 5f8a37eaea45 |
children | abfa77a2693b |
files | lisp/mail/rmailsum.el |
diffstat | 1 files changed, 20 insertions(+), 14 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mail/rmailsum.el Tue Apr 15 23:38:27 1997 +0000 +++ b/lisp/mail/rmailsum.el Wed Apr 16 00:56:40 1997 +0000 @@ -570,17 +570,19 @@ ;; Delete and undelete summary commands. -(defun rmail-summary-delete-forward (&optional backward) +(defun rmail-summary-delete-forward (&optional count) "Delete this message and move to next nondeleted one. Deleted messages stay in the file until the \\[rmail-expunge] command is given. -With prefix argument, delete and move backward." - (interactive "P") - (let (end) - (rmail-summary-goto-msg) - (pop-to-buffer rmail-buffer) - (rmail-delete-message) - (let ((del-msg rmail-current-message)) - (pop-to-buffer rmail-summary-buffer) +A prefix argument serves as a repeat count; +a negative argument means to delete and move backward." + (interactive "p") + (let (end del-msg + (backward (< count 0))) + (while (/= count 0) + (rmail-summary-goto-msg) + (with-current-buffer rmail-buffer + (rmail-delete-message) + (setq del-msg rmail-current-message)) (rmail-summary-mark-deleted del-msg) (while (and (not (if backward (bobp) (eobp))) (save-excursion (beginning-of-line) @@ -588,13 +590,17 @@ (forward-line (if backward -1 1))) ;; It looks ugly to move to the empty line at end of buffer. (and (eobp) (not backward) - (forward-line -1))))) + (forward-line -1)) + (setq count + (if (> count 0) (1- count) (1+ count)))))) -(defun rmail-summary-delete-backward () +(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." - (interactive) - (rmail-summary-delete-forward t)) +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))) (defun rmail-summary-mark-deleted (&optional n undel) ;; Since third arg is t, this only alters the summary, not the Rmail buf.