* lisp/progmodes/project.el (project-list-file): Unbreak use of
'locate-user-emacs-file' on Emacs 26.1.
Problem reported by Dmitry Gutov <dmitry@gutov.dev>.
(cherry picked from commit
ceee1a0ae7a804fbd5307f99db4f81f3d427e40e)
;;; Project list
(defcustom project-list-file
- (locate-user-emacs-file '("projects.eld" "projects"))
+ (locate-user-emacs-file (if (>= emacs-major-version 31)
+ '("projects.eld" "projects")
+ "projects"))
"File in which to save the list of known projects."
:type 'file
:version "31.1"