Function: custom-note-var-changed

custom-note-var-changed is a byte-compiled function defined in custom.el.gz.

Signature

(custom-note-var-changed VARIABLE)

Documentation

Inform Custom that VARIABLE has been set (changed).

VARIABLE is a symbol that names a user option. The result is that the change is treated as having been made through Custom.

Probably introduced at or before Emacs version 23.1.

Source Code

;; Defined in /usr/src/emacs/lisp/custom.el.gz
(defun custom-note-var-changed (variable)
  "Inform Custom that VARIABLE has been set (changed).
VARIABLE is a symbol that names a user option.
The result is that the change is treated as having been made through Custom."
  (put variable 'customized-value (list (custom-quote (eval variable)))))