Function: mh-position-on-field
mh-position-on-field is an autoloaded and byte-compiled function
defined in mh-letter.el.gz.
Signature
(mh-position-on-field FIELD &optional IGNORED)
Documentation
Move to the end of the FIELD in the header.
Move to end of entire header if FIELD not found. Returns non-nil if FIELD was found. The optional second arg is for pre-version 4 compatibility and is IGNORED.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-letter.el.gz
;;;###mh-autoload
(defun mh-position-on-field (field &optional _ignored)
"Move to the end of the FIELD in the header.
Move to end of entire header if FIELD not found.
Returns non-nil if FIELD was found.
The optional second arg is for pre-version 4 compatibility and is
IGNORED."
(cond ((mh-goto-header-field field)
(mh-header-field-end)
t)
((mh-goto-header-end 0)
nil)))