Function: persist-unpersist

persist-unpersist is a byte-compiled function defined in persist.el.

Signature

(persist-unpersist SYMBOL)

Documentation

Stop the value in SYMBOL from persisting.

This does not remove any saved value of SYMBOL.

Source Code

;; Defined in ~/.emacs.d/elpa/persist-0.8/persist.el
(defun persist-unpersist (symbol)
  "Stop the value in SYMBOL from persisting.

This does not remove any saved value of SYMBOL."
  (put symbol 'persist nil)
  (setq persist--symbols
        (remove symbol persist--symbols)))