Function: gnus-article-forward-header
gnus-article-forward-header is a byte-compiled function defined in
gnus-art.el.gz.
Signature
(gnus-article-forward-header)
Documentation
Move point to the start of the next header.
If the current header is a continuation header, this can be several lines forward.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-article-forward-header ()
"Move point to the start of the next header.
If the current header is a continuation header, this can be several
lines forward."
(let ((ended nil))
(while (not ended)
(forward-line 1)
(if (looking-at "[ \t]+[^ \t]")
(forward-line 1)
(setq ended t)))))