Function: mh-delete-msg-no-motion
mh-delete-msg-no-motion is an autoloaded, interactive and
byte-compiled function defined in mh-folder.el.gz.
Signature
(mh-delete-msg-no-motion RANGE)
Documentation
Delete RANGE, don't move to next message.
This command marks the RANGE for deletion but leaves the cursor at the current message in case you wish to perform other operations on the message.
Check the documentation of mh-interactive-range to see how
RANGE is read in interactive use.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-folder.el.gz
;;;###mh-autoload
(defun mh-delete-msg-no-motion (range)
"Delete RANGE, don't move to next message.
This command marks the RANGE for deletion but leaves the cursor
at the current message in case you wish to perform other
operations on the message.
Check the documentation of `mh-interactive-range' to see how
RANGE is read in interactive use."
(interactive (list (mh-interactive-range "Delete")))
(mh-iterate-on-range () range
(mh-delete-a-msg nil)))