]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid compilation warning in files.el
authorEli Zaretskii <eliz@gnu.org>
Sun, 9 Jul 2017 17:35:57 +0000 (20:35 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sun, 9 Jul 2017 17:35:57 +0000 (20:35 +0300)
* lisp/files.el (auto-save-visited-file-name): Avoid obsoletion
warning due to its use in auto-save-visited-mode.

lisp/files.el

index 06f49bba23cd2a4cf230d027dd4eefec689bf6dd..2f3efa33c2877958a464e62e422eaeb52a559c66 100644 (file)
@@ -434,8 +434,11 @@ and toggle it if ARG is `toggle'."
              (not (and buffer-auto-save-file-name
                        auto-save-visited-file-name)))))))
 
+;; The 'set' part is so we don't get a warning for using this variable
+;; above, while still catching code that _sets_ the variable to get
+;; the same effect as the new auto-save-visited-mode.
 (make-obsolete-variable 'auto-save-visited-file-name 'auto-save-visited-mode
-                        "Emacs 26.1")
+                        "Emacs 26.1" 'set)
 
 (defcustom save-abbrevs t
   "Non-nil means save word abbrevs too when files are saved.