Function: persist-copy

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

Signature

(persist-copy OBJ)

Documentation

Return copy of OBJ.

Source Code

;; Defined in ~/.emacs.d/elpa/persist-0.8/persist.el
(defun persist-copy (obj)
  "Return copy of OBJ."
  (if (hash-table-p obj)
      (copy-hash-table obj)
    (compat-call copy-tree obj t)))