]> git.eshelyaron.com Git - emacs.git/commitdiff
Rename new option to remote-file-name-inhibit-auto-save-visited
authorStefan Kangas <stefan@marxist.se>
Tue, 5 Jul 2022 17:37:55 +0000 (19:37 +0200)
committerStefan Kangas <stefan@marxist.se>
Tue, 5 Jul 2022 17:48:54 +0000 (19:48 +0200)
* lisp/files.el (remote-file-name-inhibit-auto-save-visited):
Rename from 'auto-save-visited-remote-files' and invert logic.
(auto-save-visited-mode): Adjust accordingly.  (Bug#41333)
Suggested by Michael Albinus <michael.albinus@gmx.de>.

etc/NEWS
lisp/files.el

index 682ab6d721cf7215a1cad7773223483a50595160..7a1b7a856af7644c4381d14f729179ce980bbf09 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2009,9 +2009,9 @@ You can use it to automatically save only specific buffers, for
 example buffers using a particular mode or in some directory.
 
 ---
-*** New user option 'auto-save-visited-remote-files'.
-This user option controls whether or not 'auto-save-visited-mode' will
-auto-save remote buffers.  The default is t.
+*** New user option 'remote-file-name-inhibit-auto-save-visited'.
+If this user option is non-nil, 'auto-save-visited-mode' will not
+auto-save remote buffers.  The default is nil.
 
 +++
 *** New package vtable.el for formatting tabular data.
index 9eeed836c992136b6ab22473b833ed1205dc43bb..31e450355f1545b1d19dddf7010031931890d646 100644 (file)
@@ -469,8 +469,9 @@ non-nil."
   :risky t
   :version "29.1")
 
-(defcustom auto-save-visited-remote-files t
-  "If non-nil, `auto-save-visited-mode' will auto-save remote files."
+(defcustom remote-file-name-inhibit-auto-save-visited nil
+  "When nil, `auto-save-visited-mode' will auto-save remote files.
+Any other value means that it will not."
   :group 'auto-save
   :type 'boolean
   :version "29.1")
@@ -509,7 +510,7 @@ For more details, see Info node `(emacs) Auto Save Files'."
                   (not (and buffer-auto-save-file-name
                             auto-save-visited-file-name))
                   (or (not (file-remote-p buffer-file-name))
-                      auto-save-visited-remote-files)
+                      (not remote-file-name-inhibit-auto-save-visited))
                   (or (not (functionp auto-save-visited-predicate))
                       (funcall auto-save-visited-predicate))))))))