* 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)
'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.
(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
\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
(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)
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