Function: mh-first-msg
mh-first-msg is an autoloaded, interactive and byte-compiled function
defined in mh-folder.el.gz.
Signature
(mh-first-msg)
Documentation
Display first message.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-folder.el.gz
t) ; return t for write-file-functions
;;;###mh-autoload
(defun mh-first-msg ()
"Display first message."
(interactive)
(goto-char (point-min))
(while (and (not (eobp)) (not (looking-at mh-scan-valid-regexp)))
(forward-line 1)))