]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/userlock.el (ask-user-about-supersession-threat): Accept 'y' strictly.
authorDavid M. Koppelman <koppel@ece.lsu.edu>
Sun, 10 Oct 2021 17:27:29 +0000 (20:27 +0300)
committerJuri Linkov <juri@linkov.net>
Sun, 10 Oct 2021 17:27:29 +0000 (20:27 +0300)
(Bug#51101)

lisp/userlock.el

index 87a8b7b45192d7805d483c9e704284902b42a8ed..348ccc6f8ec930bdaab2de4a8c53f9e70925da1d 100644 (file)
@@ -194,7 +194,9 @@ really edit the buffer? (%s, %s, %s or %s) "
                       (list "File reverted" filename)))
              ((eq answer ?n)
               (signal 'file-supersession
-                      (list "File changed on disk" filename)))))
+                      (list "File changed on disk" filename)))
+             ((eq answer ?y))
+             (t (setq answer nil))))
       (message
        "File on disk now will become a backup file if you save these changes.")
       (setq buffer-backed-up nil))))