Function: mail-text-start

mail-text-start is a byte-compiled function defined in sendmail.el.gz.

Signature

(mail-text-start)

Documentation

Return the buffer location of the start of text, as a number.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/sendmail.el.gz
(defun mail-text-start ()
  "Return the buffer location of the start of text, as a number."
  (save-restriction
    (widen)
    (save-excursion
      (rfc822-goto-eoh)
      (forward-line 1)
      (point))))