Function: mh-header-field-beginning
mh-header-field-beginning is an autoloaded and byte-compiled function
defined in mh-utils.el.gz.
Signature
(mh-header-field-beginning)
Documentation
Move to the beginning 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-beginning ()
"Move to the beginning of the current header field.
Handle RFC 822 (or later) continuation lines."
(beginning-of-line)
(while (looking-at "^[ \t]")
(forward-line -1)))