Function: mh-identity-field
mh-identity-field is an autoloaded and byte-compiled function defined
in mh-identity.el.gz.
Signature
(mh-identity-field IDENTITY FIELD)
Documentation
Return the specified FIELD of the given IDENTITY.
See mh-identity-list.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-identity.el.gz
;;;###mh-autoload
(defun mh-identity-field (identity field)
"Return the specified FIELD of the given IDENTITY.
See `mh-identity-list'."
(let* ((pers-list (cadr (assoc identity mh-identity-list)))
(value (cdr (assoc field pers-list))))
value))