Function: mh-narrow-to-tick
mh-narrow-to-tick is an autoloaded, interactive and byte-compiled
function defined in mh-seq.el.gz.
Signature
(mh-narrow-to-tick)
Documentation
Limit to ticked messages.
What this command does is show only those messages that are in
the "tick" sequence (which you can customize via the
mh-tick-seq option) in the MH-Folder buffer. In addition, it
limits further MH-E searches to just those messages. When you
want to widen the view to all your messages again, use
M-x mh-widen (mh-widen).
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-seq.el.gz
;;;###mh-autoload
(defun mh-narrow-to-tick ()
"Limit to ticked messages.
What this command does is show only those messages that are in
the \"tick\" sequence (which you can customize via the
`mh-tick-seq' option) in the MH-Folder buffer. In addition, it
limits further MH-E searches to just those messages. When you
want to widen the view to all your messages again, use
\\[mh-widen]."
(interactive)
(cond ((not mh-tick-seq)
(error "Enable ticking by customizing `mh-tick-seq'"))
((null (mh-seq-msgs (mh-find-seq mh-tick-seq)))
(message "No messages in %s sequence" mh-tick-seq))
(t (mh-narrow-to-seq mh-tick-seq))))