Function: custom-reset-variables

custom-reset-variables is a byte-compiled function defined in custom.el.gz.

This function is obsolete since 29.1.

Signature

(custom-reset-variables &rest ARGS)

Documentation

Reset the specs of some variables to their values in other themes.

This creates settings in the user theme.

Each of the arguments ARGS has this form:

    (VARIABLE IGNORED)

This means reset VARIABLE. (The argument IGNORED is ignored).

Source Code

;; Defined in /usr/src/emacs/lisp/custom.el.gz
(defun custom-reset-variables (&rest args)
  "Reset the specs of some variables to their values in other themes.
This creates settings in the `user' theme.

Each of the arguments ARGS has this form:

    (VARIABLE IGNORED)

This means reset VARIABLE.  (The argument IGNORED is ignored)."
  (declare (obsolete nil "29.1"))
    (apply #'custom-theme-reset-variables 'user args))