Function: mh-auto-fill-for-letter

mh-auto-fill-for-letter is a byte-compiled function defined in mh-letter.el.gz.

Signature

(mh-auto-fill-for-letter)

Documentation

Perform auto-fill for message.

Header is treated specially by inserting a tab before continuation lines.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-letter.el.gz
;;; Support Routines

(defun mh-auto-fill-for-letter ()
  "Perform auto-fill for message.
Header is treated specially by inserting a tab before continuation
lines."
  (if (mh-in-header-p)
      (let ((fill-prefix "\t"))
        (do-auto-fill))
    (do-auto-fill)))