Function: custom-set-icons

custom-set-icons is an autoloaded and byte-compiled function defined in cus-edit.el.gz.

Signature

(custom-set-icons &rest ARGS)

Documentation

Install user customizations of icon specs specified in ARGS.

These settings are registered as theme user. The arguments should each be a list of the form:

  (SYMBOL EXP)

This stores EXP (without evaluating it) as the saved spec for SYMBOL.

Source Code

;; Defined in /usr/src/emacs/lisp/cus-edit.el.gz
;;;###autoload
(defun custom-set-icons (&rest args)
  "Install user customizations of icon specs specified in ARGS.
These settings are registered as theme `user'.
The arguments should each be a list of the form:

  (SYMBOL EXP)

This stores EXP (without evaluating it) as the saved spec for SYMBOL."
  (apply #'custom-theme-set-icons 'user args))