Function: mh-in-header-p

mh-in-header-p is an autoloaded and byte-compiled function defined in mh-utils.el.gz.

Signature

(mh-in-header-p)

Documentation

Return non-nil if the point is in the header of a draft message.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-utils.el.gz
;;; Message Utilities

;; Functions that would ordinarily be in mh-letter.el that are needed
;; by mh-show.el are found here in order to prevent the loading of
;; mh-letter.el until a message is actually composed.

;;;###mh-autoload
(defun mh-in-header-p ()
  "Return non-nil if the point is in the header of a draft message."
  (< (point) (mh-mail-header-end)))