Function: rmail-get-attr-value

rmail-get-attr-value is a byte-compiled function defined in rmail.el.gz.

Signature

(rmail-get-attr-value ATTR STATE)

Documentation

Return the character value for ATTR.

ATTR is a (numeric) index, an offset into the mbox attribute header value. STATE is one of nil, t, or a character value.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rmail.el.gz
(defun rmail-get-attr-value (attr state)
  "Return the character value for ATTR.
ATTR is a (numeric) index, an offset into the mbox attribute
header value.  STATE is one of nil, t, or a character value."
  (cond
   ((numberp state) state)
   ((not state) ?-)
   (t (nth 0 (aref rmail-attr-array attr)))))