Function: projectile-unserialize

projectile-unserialize is a byte-compiled function defined in projectile.el.

Signature

(projectile-unserialize FILENAME)

Documentation

Read data serialized by projectile-serialize from FILENAME.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-unserialize (filename)
  "Read data serialized by `projectile-serialize' from FILENAME."
  (with-demoted-errors
      "Error during file deserialization: %S"
    (when (file-exists-p filename)
      (with-temp-buffer
        (insert-file-contents filename)
        ;; this will blow up if the contents of the file aren't
        ;; lisp data structures
        (read (buffer-string))))))