Function: mh-start-of-uncleaned-message
mh-start-of-uncleaned-message is an autoloaded and byte-compiled
function defined in mh-show.el.gz.
Signature
(mh-start-of-uncleaned-message)
Documentation
Position uninteresting headers off the top of the window.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-show.el.gz
;;;###mh-autoload
(defun mh-start-of-uncleaned-message ()
"Position uninteresting headers off the top of the window."
(let ((case-fold-search t))
(re-search-forward
"^To:\\|^Cc:\\|^From:\\|^Subject:\\|^Date:" nil t)
(beginning-of-line)
(mh-recenter 0)))