]> git.eshelyaron.com Git - emacs.git/commitdiff
Make `bookmark-file' variable obsolete
authorStefan Kangas <stefankangas@gmail.com>
Sun, 9 Jun 2019 23:26:55 +0000 (16:26 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 9 Jun 2019 23:29:21 +0000 (16:29 -0700)
* lisp/bookmark.el (bookmark-file): Redefine as obsolete variable
alias for `bookmark-default-file'.  (Bug#35917)

etc/NEWS
lisp/bookmark.el

index f358a211a54ab7b69879d501203a45fa98f984bb..22b86b50130ff616106b9f9a1d2749fd94089568 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1507,6 +1507,12 @@ the new variable 'buffer-auto-revert-by-notification' to a non-nil
 value.  Auto Revert mode can use this information to avoid polling the
 buffer periodically when 'auto-revert-avoid-polling' is non-nil.
 
+** Bookmarks
+
++++
+*** 'bookmark-file' is now an obsolete alias of
+'bookmark-default-file'.
+
 \f
 * New Modes and Packages in Emacs 27.1
 
index 89f594c1866fcbee784cb0507ead230fea83cdc0..d4fe2d9050cf33875d4c440fb78dcf24870eb319 100644 (file)
@@ -82,15 +82,9 @@ To specify the file in which to save them, modify the variable
   "The `.emacs.bmk' file used to be called this name.")
 
 
-;; defvared to avoid a compilation warning:
-(defvar bookmark-file nil
-  "Old name for `bookmark-default-file'.")
-
+(define-obsolete-variable-alias 'bookmark-file 'bookmark-default-file "27.1")
 (defcustom bookmark-default-file
-  (if bookmark-file
-      ;; In case user set `bookmark-file' in her .emacs:
-      bookmark-file
-    (locate-user-emacs-file "bookmarks" ".emacs.bmk"))
+  (locate-user-emacs-file "bookmarks" ".emacs.bmk")
   "File in which to save bookmarks by default."
   :type 'file
   :group 'bookmark)