* lisp/progmodes/project.el (project--write-project-list):
Let-bind print-length and print-level to nil to not truncate the
saved project list with unreadable ellipsis.
(let ((filename project-list-file))
(with-temp-buffer
(insert ";;; -*- lisp-data -*-\n")
- (pp project--list (current-buffer))
+ (let ((print-length nil)
+ (print-level nil))
+ (pp project--list (current-buffer)))
(write-region nil nil filename nil 'silent))))
;;;###autoload