Function: article-goto-body
article-goto-body is a byte-compiled function defined in
gnus-art.el.gz.
Signature
(article-goto-body)
Documentation
Place point at the start of the body.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun article-goto-body ()
"Place point at the start of the body."
(goto-char (point-min))
(cond
;; This variable is only bound when dealing with separate
;; MIME body parts.
(article-goto-body-goes-to-point-min-p
t)
((search-forward "\n\n" nil t)
t)
(t
(goto-char (point-max))
nil)))