Function: sc-mail-field

sc-mail-field is a byte-compiled function defined in supercite.el.gz.

Signature

(sc-mail-field FIELD)

Documentation

Return the mail header field value associated with FIELD.

If there was no mail header with FIELD as its key, return the value of sc-mumble. FIELD is case insensitive.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/supercite.el.gz
;; let the user change mail field information
(defun sc-mail-field (field)
  "Return the mail header field value associated with FIELD.
If there was no mail header with FIELD as its key, return the value of
`sc-mumble'.  FIELD is case insensitive."
  (or (cdr (assoc-string field sc-mail-info 'case-fold)) sc-mumble))