Function: preview-specs-setter

preview-specs-setter is a byte-compiled function defined in preview.el.

Signature

(preview-specs-setter SYMBOL VALUE)

Documentation

Set SYMBOL to VALUE and clear preview-min-alist property.

This is used in icon specs, so that customizing will clear cached icons.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/preview.el
(defun preview-specs-setter (symbol value)
  "Set SYMBOL to VALUE and clear `preview-min-alist' property.
This is used in icon specs, so that customizing will
clear cached icons."
  (put symbol 'preview-min-alist nil)
  (set-default symbol value))