Function: persist--file-location
persist--file-location is a byte-compiled function defined in
persist.el.
Signature
(persist--file-location SYMBOL)
Documentation
Return the file name at which SYMBOL does or will persist.
Source Code
;; Defined in ~/.emacs.d/elpa/persist-0.8/persist.el
(defun persist--file-location (symbol)
"Return the file name at which SYMBOL does or will persist."
(expand-file-name
(symbol-name symbol)
(or (get symbol 'persist-location)
persist--directory-location)))