]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't suggest to revert buffer from non-existing file
authorEli Zaretskii <eliz@gnu.org>
Tue, 25 Jul 2023 14:51:58 +0000 (17:51 +0300)
committerEli Zaretskii <eliz@gnu.org>
Tue, 25 Jul 2023 14:51:58 +0000 (17:51 +0300)
* lisp/files-x.el (modify-file-local-variable-message): Suggest to
revert from the buffer's file only if that file exists; otherwise
suggest 'normal-mode'.  (Bug#64844)

lisp/files-x.el

index 9b1a7a179022cb7f22caf485139af1006ed704d5..3ba7632d2537eb34db3d305922f2d7c7efeb2810 100644 (file)
@@ -136,7 +136,10 @@ Intended to be used in the `interactive' spec of
              (eq new-value not-value)
              (not (equal old-value new-value)))
       (message "%s" (substitute-command-keys
-                    "For this change to take effect revisit file using \\[revert-buffer]")))))
+                     (if (and (stringp buffer-file-name)
+                              (file-exists-p buffer-file-name))
+                        "For this change to take effect revisit file using \\[revert-buffer]"
+                       "For this change to take effect use \\[normal-mode]"))))))
 
 (defun modify-file-local-variable (variable value op &optional interactive)
   "Modify file-local VARIABLE in Local Variables depending on operation OP.