Function: preview-inherited-face-attribute
preview-inherited-face-attribute is a byte-compiled function defined
in preview.el.
Signature
(preview-inherited-face-attribute FACE ATTRIBUTE &optional INHERIT)
Documentation
Fetch face attribute while adhering to inheritance.
This searches FACE for an ATTRIBUTE, using INHERIT
for resolving unspecified or relative specs. See the fourth
argument of function face-attribute for details.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/preview.el
(defun preview-inherited-face-attribute (face attribute &optional inherit)
"Fetch face attribute while adhering to inheritance.
This searches FACE for an ATTRIBUTE, using INHERIT
for resolving unspecified or relative specs. See the fourth
argument of function `face-attribute' for details."
(face-attribute face attribute nil inherit))