Variable: face-attribute-name-alist

face-attribute-name-alist is a variable defined in faces.el.gz.

Value

((:family . "font family") (:foundry . "font foundry")
 (:width . "character set width") (:height . "height in 1/10 pt")
 (:weight . "weight") (:slant . "slant") (:underline . "underline")
 (:overline . "overline") (:extend . "extend")
 (:strike-through . "strike-through") (:box . "box")
 (:inverse-video . "inverse-video display")
 (:foreground . "foreground color") (:background . "background color")
 (:stipple . "background stipple") (:inherit . "inheritance"))

Documentation

An alist of descriptive names for face attributes.

Each element has the form (ATTRIBUTE-NAME . DESCRIPTION) where ATTRIBUTE-NAME is a face attribute name (a keyword symbol), and DESCRIPTION is a descriptive name for ATTRIBUTE-NAME.

Source Code

;; Defined in /usr/src/emacs/lisp/faces.el.gz
(defconst face-attribute-name-alist
  '((:family . "font family")
    (:foundry . "font foundry")
    (:width . "character set width")
    (:height . "height in 1/10 pt")
    (:weight . "weight")
    (:slant . "slant")
    (:underline . "underline")
    (:overline . "overline")
    (:extend . "extend")
    (:strike-through . "strike-through")
    (:box . "box")
    (:inverse-video . "inverse-video display")
    (:foreground . "foreground color")
    (:background . "background color")
    (:stipple . "background stipple")
    (:inherit . "inheritance"))
  "An alist of descriptive names for face attributes.
Each element has the form (ATTRIBUTE-NAME . DESCRIPTION) where
ATTRIBUTE-NAME is a face attribute name (a keyword symbol), and
DESCRIPTION is a descriptive name for ATTRIBUTE-NAME.")