Function: mh-narrow-to-to
mh-narrow-to-to is an autoloaded, interactive and byte-compiled
function defined in mh-limit.el.gz.
Signature
(mh-narrow-to-to &optional PICK-EXPR)
Documentation
Limit to messages with the same "To:" field.
With a prefix argument, edit PICK-EXPR.
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-to (&optional pick-expr)
"Limit to messages with the same \"To:\" field.
With a prefix argument, edit PICK-EXPR.
Use \\<mh-folder-mode-map>\\[mh-widen] to undo this command."
(interactive
(list (mh-edit-pick-expr
(mh-quote-pick-expr (mh-current-message-header-field 'to)))))
(mh-narrow-to-header-field 'to pick-expr))