Function: mh-header-field-end
mh-header-field-end is an autoloaded and byte-compiled function
defined in mh-utils.el.gz.
Signature
(mh-header-field-end)
Documentation
Move to the end of the current header field.
Handle RFC 822 (or later) continuation lines.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-utils.el.gz
;;;###mh-autoload
(defun mh-header-field-end ()
"Move to the end of the current header field.
Handle RFC 822 (or later) continuation lines."
(forward-line 1)
(while (looking-at "^[ \t]")
(forward-line 1))
(backward-char 1)) ;to end of previous line