Function: mh-nmail
mh-nmail is an autoloaded, interactive and byte-compiled function
defined in mh-folder.el.gz.
Signature
(mh-nmail &optional ARG)
Documentation
Check for new mail in inbox folder.
Scan an MH folder if ARG is non-nil.
This function is an entry point to MH-E, the Emacs interface to the MH mail system.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-folder.el.gz
;;;###autoload
(defun mh-nmail (&optional arg)
"Check for new mail in inbox folder.
Scan an MH folder if ARG is non-nil.
This function is an entry point to MH-E, the Emacs interface to
the MH mail system."
(interactive "P")
(mh-find-path) ; init mh-inbox
(if arg
(call-interactively 'mh-visit-folder)
(mh-visit-folder mh-inbox))
(mh-set-default-directory))