Function: custom-theme-set-icons

custom-theme-set-icons is a byte-compiled function defined in cus-edit.el.gz.

Signature

(custom-theme-set-icons THEME &rest SPECS)

Documentation

Apply a list of icon specs associated with THEME.

THEME should be a symbol, and SPECS are icon name/spec pairs. See define-icon for details.

Source Code

;; Defined in /usr/src/emacs/lisp/cus-edit.el.gz
(defun custom-theme-set-icons (theme &rest specs)
  "Apply a list of icon specs associated with THEME.
THEME should be a symbol, and SPECS are icon name/spec pairs.
See `define-icon' for details."
  (custom-check-theme theme)
  (pcase-dolist (`(,icon ,spec) specs)
    (custom-push-theme 'theme-icon icon theme 'set spec)))