Function: custom-reset-faces
custom-reset-faces is a byte-compiled function defined in
cus-face.el.gz.
Signature
(custom-reset-faces &rest ARGS)
Documentation
Reset the specs of some faces to their specs in specified themes.
This creates settings in the user theme.
Each of the arguments ARGS has this form:
(FACE FROM-THEME)
This means reset FACE to its value in FROM-THEME.
Source Code
;; Defined in /usr/src/emacs/lisp/cus-face.el.gz
(defun custom-reset-faces (&rest args)
"Reset the specs of some faces to their specs in specified themes.
This creates settings in the `user' theme.
Each of the arguments ARGS has this form:
(FACE FROM-THEME)
This means reset FACE to its value in FROM-THEME."
(apply 'custom-theme-reset-faces 'user args))