Function: persist--defvar-1
persist--defvar-1 is a byte-compiled function defined in persist.el.
Signature
(persist--defvar-1 SYMBOL LOCATION INITVALUE)
Documentation
Set symbol up for persistence.
Source Code
;; Defined in ~/.emacs.d/elpa/persist-0.8/persist.el
(defun persist--defvar-1 (symbol location initvalue)
"Set symbol up for persistence."
(when location
(persist-location symbol location))
(persist-symbol symbol initvalue)
(persist-load symbol))