Function: mh-goto-header-end
mh-goto-header-end is an autoloaded and byte-compiled function defined
in mh-utils.el.gz.
Signature
(mh-goto-header-end ARG)
Documentation
Move the cursor ARG lines after the header.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-utils.el.gz
;;;###mh-autoload
(defun mh-goto-header-end (arg)
"Move the cursor ARG lines after the header."
(if (re-search-forward (concat "^\\(" (regexp-quote mh-mail-header-separator)
"\\)?$") nil nil)
(forward-line arg)))