Function: mh-catchup
mh-catchup is an autoloaded, interactive and byte-compiled function
defined in mh-seq.el.gz.
Signature
(mh-catchup RANGE)
Documentation
Delete RANGE from the "unseen" sequence.
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-seq.el.gz
;;; MH-Folder Commands
;; Alphabetical.
;;;###mh-autoload
(defun mh-catchup (range)
"Delete RANGE from the \"unseen\" sequence.
Check the documentation of `mh-interactive-range' to see how
RANGE is read in interactive use."
(interactive (list (mh-interactive-range "Catchup"
(cons (point-min) (point-max)))))
(mh-delete-msg-from-seq range mh-unseen-seq))