]> git.eshelyaron.com Git - emacs.git/commitdiff
Use .eld for some relevant cache and data files
authorStefan Kangas <stefankangas@gmail.com>
Sat, 8 Mar 2025 12:41:22 +0000 (13:41 +0100)
committerEshel Yaron <me@eshelyaron.com>
Wed, 12 Mar 2025 18:47:33 +0000 (19:47 +0100)
* lisp/bookmark.el (bookmark-default-file):
* lisp/net/nsm.el (nsm-settings-file):
* lisp/progmodes/project.el (project-list-file):
* lisp/saveplace.el (save-place-file): Rename files to have the file
suffix ".eld".  This change is backwards-compatible.

(cherry picked from commit 3396f0e5678cf1edb0056917182b30927a35335b)

lisp/bookmark.el
lisp/net/nsm.el
lisp/progmodes/project.el
lisp/recentf.el
lisp/saveplace.el

index 53e8bf14fc4473bba522f84baa6ed718ae276f4d..76dcbd07fe4ce489d12abeeb2e470841c7e10777 100644 (file)
@@ -81,12 +81,13 @@ To specify the file in which to save them, modify the variable
   'bookmark-default-file "27.1")
 (define-obsolete-variable-alias 'bookmark-file 'bookmark-default-file "27.1")
 (defcustom bookmark-default-file
-  (locate-user-emacs-file "bookmarks" ".emacs.bmk")
+  (locate-user-emacs-file '("bookmarks.eld" "bookmarks") ".emacs.bmk")
   "File in which to save bookmarks by default."
   ;; The current default file is defined via the internal variable
   ;; `bookmark-bookmarks-timestamp'.  This does not affect the value
   ;; of `bookmark-default-file'.
-  :type 'file)
+  :type 'file
+  :version "31.1")
 
 (defcustom bookmark-watch-bookmark-file t
   "If non-nil reload the default bookmark file if it was changed.
index afc44dad0612845e6b04218c381e8bdfcbf68c82..226635fef112f4e0249d2a2007bffcd4290a2f1c 100644 (file)
@@ -79,9 +79,10 @@ option."
                  (const :tag "Off" nil)
                  (function :tag "Custom function")))
 
-(defcustom nsm-settings-file (locate-user-emacs-file "network-security.data")
+(defcustom nsm-settings-file
+  (locate-user-emacs-file '("network-security.eld" "network-security.data"))
   "The file the security manager settings will be stored in."
-  :version "25.1"
+  :version "31.1"
   :type 'file)
 
 (defcustom nsm-save-host-names nil
index 6f6fba81c4cff975ec346298a1c56f2dbfbf6716..ffe6c36682d4df0bd08a79cd7118fd67b6e6d38a 100644 (file)
@@ -1758,10 +1758,11 @@ Also see the `project-kill-buffers-display-buffer-list' variable."
 \f
 ;;; Project list
 
-(defcustom project-list-file (locate-user-emacs-file "projects")
+(defcustom project-list-file
+  (locate-user-emacs-file '("projects.eld" "projects"))
   "File in which to save the list of known projects."
   :type 'file
-  :version "28.1"
+  :version "31.1"
   :group 'project)
 
 (defcustom project-list-exclude nil
index 9ee576c5c992584adcbd11c3cad3ed3c10e16924..ea2a066f920470a20c156f5e51aed386b8bfbb86 100644 (file)
@@ -82,10 +82,11 @@ See the command `recentf-save-list'."
                 (const :tag "No Limit" nil))
   :version "31.1")
 
-(defcustom recentf-save-file (locate-user-emacs-file "recentf" ".recentf")
+(defcustom recentf-save-file
+  (locate-user-emacs-file '("recentf.eld" "recentf") ".recentf")
   "File to save the recent list into."
   :group 'recentf
-  :version "24.4"
+  :version "31.1"
   :type 'file
   :initialize 'custom-initialize-default
   :set (lambda (symbol value)
index 1b99387ef5fc2b3bb168550302e2444c99fe7fcb..28b0e39af40a9afc1284bfa989690a9d1db1ec4d 100644 (file)
@@ -62,9 +62,10 @@ when the place in that buffer was recorded.
 
 This alist is saved between Emacs sessions.")
 
-(defcustom save-place-file (locate-user-emacs-file "places" ".emacs-places")
+(defcustom save-place-file
+  (locate-user-emacs-file '("places.eld" "places") ".emacs-places")
   "Name of the file that records `save-place-alist' value."
-  :version "24.4"                       ; added locate-user-emacs-file
+  :version "31.1"
   :type 'file)
 
 (defcustom save-place-version-control nil