Function: mh-page-digest
mh-page-digest is an autoloaded, interactive and byte-compiled
function defined in mh-funcs.el.gz.
Signature
(mh-page-digest)
Documentation
Display next message in digest.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-funcs.el.gz
;;;###mh-autoload
(defun mh-page-digest ()
"Display next message in digest."
(interactive)
(mh-in-show-buffer (mh-show-buffer)
;; Go to top of screen (in case user moved point).
(move-to-window-line 0)
(let ((case-fold-search nil))
;; Search for blank line and then for From:
(or (and (search-forward "\n\n" nil t)
(re-search-forward "^From:" nil t))
(error "No more messages in digest")))
;; Go back to previous blank line, then forward to the first non-blank.
(search-backward "\n\n" nil t)
(forward-line 2)
(mh-recenter 0)))