Function: mh-extract-from-header-value

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

Signature

(mh-extract-from-header-value)

Documentation

Extract From: string from header.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-utils.el.gz
;;;###mh-autoload
(defun mh-extract-from-header-value ()
  "Extract From: string from header."
  (save-excursion
    (if (not (mh-goto-header-field "From:"))
        nil
      (skip-chars-forward " \t")
      (buffer-substring-no-properties
       (point) (progn (mh-header-field-end)(point))))))