Function: mh-letter-header-field-at-point

mh-letter-header-field-at-point is a byte-compiled function defined in mh-letter.el.gz.

Signature

(mh-letter-header-field-at-point)

Documentation

Return the header field name at point.

A symbol is returned whose name is the string obtained by downcasing the field name.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-letter.el.gz
(defun mh-letter-header-field-at-point ()
  "Return the header field name at point.
A symbol is returned whose name is the string obtained by
downcasing the field name."
  (save-excursion
    (end-of-line)
    (and (re-search-backward mh-letter-header-field-regexp nil t)
         (intern (downcase (match-string 1))))))