Function: mh-letter-adjust-point

mh-letter-adjust-point is a byte-compiled function defined in mh-comp.el.gz.

Signature

(mh-letter-adjust-point)

Documentation

Move cursor to first header field if are using the no prompt mode.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-comp.el.gz
(defun mh-letter-adjust-point ()
  "Move cursor to first header field if are using the no prompt mode."
  (unless mh-compose-prompt-flag
    (goto-char (point-max))
    (mh-letter-next-header-field)))