Function: hfy-combined-face-spec
hfy-combined-face-spec is a byte-compiled function defined in
htmlfontify.el.gz.
Signature
(hfy-combined-face-spec FACE)
Documentation
Return a defface style alist of possible specifications for FACE.
Entries resulting from customization (custom-set-faces) will take
precedence.
Source Code
;; Defined in /usr/src/emacs/lisp/htmlfontify.el.gz
(defun hfy-combined-face-spec (face)
"Return a `defface' style alist of possible specifications for FACE.
Entries resulting from customization (`custom-set-faces') will take
precedence."
(append
(if (and hfy-display-class hfy-default-face-def (eq face 'default))
hfy-default-face-def)
(get face 'saved-face)
(get face 'face-defface-spec)))