Function: mh-narrow-to-range

mh-narrow-to-range is an autoloaded, interactive and byte-compiled function defined in mh-limit.el.gz.

Signature

(mh-narrow-to-range RANGE)

Documentation

Limit to RANGE.

Check the documentation of mh-interactive-range to see how RANGE is read in interactive use.

Use / w (mh-widen) to undo this command.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-limit.el.gz
;;;###mh-autoload
(defun mh-narrow-to-range (range)
  "Limit to RANGE.

Check the documentation of `mh-interactive-range' to see how
RANGE is read in interactive use.

Use \\<mh-folder-mode-map>\\[mh-widen] to undo this command."
  (interactive (list (mh-interactive-range "Narrow to")))
  (when (assoc 'range mh-seq-list) (mh-delete-seq 'range))
  (mh-add-msgs-to-seq (mh-range-to-msg-list range) 'range)
  (mh-narrow-to-seq 'range))