Function: mh-narrow-to-cc

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

Signature

(mh-narrow-to-cc &optional PICK-EXPR)

Documentation

Limit to messages with the same "Cc:" 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-cc (&optional pick-expr)
  "Limit to messages with the same \"Cc:\" 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 'cc)))))
  (mh-narrow-to-header-field 'cc pick-expr))