Function: custom-set-faces
custom-set-faces is a byte-compiled function defined in
cus-face.el.gz.
Signature
(custom-set-faces &rest ARGS)
Documentation
Apply a list of face specs for user customizations.
This works by calling custom-theme-set-faces for the user
theme, a special theme referring to settings made via Customize.
The arguments ARGS should be a list where each entry has the form:
(FACE SPEC [NOW [COMMENT]])
See the documentation of custom-theme-set-faces for details.
Source Code
;; Defined in /usr/src/emacs/lisp/cus-face.el.gz
;;; Initializing.
(defun custom-set-faces (&rest args)
"Apply a list of face specs for user customizations.
This works by calling `custom-theme-set-faces' for the `user'
theme, a special theme referring to settings made via Customize.
The arguments ARGS should be a list where each entry has the form:
(FACE SPEC [NOW [COMMENT]])
See the documentation of `custom-theme-set-faces' for details."
(apply #'custom-theme-set-faces 'user args))