Function: mh-toggle-showing
mh-toggle-showing is an autoloaded, interactive and byte-compiled
function defined in mh-folder.el.gz.
Signature
(mh-toggle-showing)
Documentation
Toggle between MH-Folder and MH-Folder Show modes.
This command switches between MH-Folder mode and MH-Folder Show mode. MH-Folder mode turns off the associated show buffer so that you can perform operations on the messages quickly without reading them. This is an excellent way to prune out your junk mail or to refile a group of messages to another folder for later examination.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-folder.el.gz
;;;###mh-autoload
(defun mh-toggle-showing ()
"Toggle between MH-Folder and MH-Folder Show modes.
This command switches between MH-Folder mode and MH-Folder Show
mode. MH-Folder mode turns off the associated show buffer so that
you can perform operations on the messages quickly without
reading them. This is an excellent way to prune out your junk
mail or to refile a group of messages to another folder for later
examination."
(interactive)
(if mh-showing-mode
(mh-set-scan-mode)
(mh-show)))