Function: persist-location

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

Signature

(persist-location SYMBOL DIRECTORY)

Documentation

Set the directory for persisting the value of symbol.

This does not force the loading of value from this directory, so to persist a variable, you will normally need to call persist-load to load a previously saved location.

Source Code

;; Defined in ~/.emacs.d/elpa/persist-0.8/persist.el
(defun persist-location (symbol directory)
  "Set the directory for persisting the value of symbol.

This does not force the loading of value from this directory, so
to persist a variable, you will normally need to call
`persist-load' to load a previously saved location."
  (put symbol 'persist-location (expand-file-name directory)))