Variable: rmail-attr-array
rmail-attr-array is a variable defined in rmail.el.gz.
Value
[(65 "answered") (68 "deleted") (69 "edited") (70 "filed")
(82 "retried") (83 "forwarded") (85 "unseen") (114 "resent")]
Documentation
An array that provides a mapping between an attribute index, its character representation and its display representation.
Source Code
;; Defined in /usr/src/emacs/lisp/mail/rmail.el.gz
(defconst rmail-attr-array
'[(?A "answered")
(?D "deleted")
(?E "edited")
(?F "filed")
(?R "retried")
(?S "forwarded")
(?U "unseen")
(?r "resent")]
"An array that provides a mapping between an attribute index,
its character representation and its display representation.")