Function: message-next-header

message-next-header is a byte-compiled function defined in message.el.gz.

Signature

(message-next-header)

Documentation

Go to the beginning of the next header.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defun message-next-header ()
  "Go to the beginning of the next header."
  (beginning-of-line)
  (or (eobp) (forward-char 1))
  (not (if (re-search-forward "^[^ \t]" nil t)
	   (beginning-of-line)
	 (goto-char (point-max)))))