Function: uniquify--set-option

uniquify--set-option is a byte-compiled function defined in uniquify.el.gz.

Signature

(uniquify--set-option VARIABLE VALUE)

Documentation

Call in defcustom :set keyword when uniquify--buffer-refresh is needed.

VARIABLE is set to VALUE if uniquify is loaded.

Source Code

;; Defined in /usr/src/emacs/lisp/uniquify.el.gz
(defun uniquify--set-option (variable value)
  "Call in `defcustom' :set keyword when `uniquify--buffer-refresh' is needed.
VARIABLE is set to VALUE if `uniquify' is loaded."
  (when (featurep 'uniquify) ; in case `uniquify' was unloaded
    (set-default variable value)
    (uniquify--buffer-refresh)))