]> git.eshelyaron.com Git - emacs.git/commitdiff
(confirm-nonexistent-file-or-buffer): `other' must be last custom
authorGlenn Morris <rgm@gnu.org>
Sun, 1 Mar 2009 00:48:51 +0000 (00:48 +0000)
committerGlenn Morris <rgm@gnu.org>
Sun, 1 Mar 2009 00:48:51 +0000 (00:48 +0000)
choice.  (Bug#2506)

lisp/ChangeLog
lisp/files.el

index 5bd2e9d3835e5d0371b8373f6ad77cc3a80b23af..8be0d110d0768ff9d4d4293ffdb83a0d6a173b0e 100644 (file)
@@ -1,3 +1,8 @@
+2009-03-01  Glenn Morris  <rgm@gnu.org>
+
+       * files.el (confirm-nonexistent-file-or-buffer): `other' must be last
+       custom choice.  (Bug#2506)
+
 2009-02-28  Eli Zaretskii  <eliz@gnu.org>
 
        * progmodes/grep.el (grep-process-setup) [windows-nt msdos]: Use
index da8db21274b9df046a1af5507720db4a81a3684f..afe6b4c3b63f53035e3f603a925c055ee2e5fdb0 100644 (file)
@@ -1138,9 +1138,9 @@ Any other non-nil value means to request confirmation.
 This affects commands like `switch-to-buffer' and `find-file'."
   :group 'find-file
   :version "23.1"
-  :type '(choice (other :tag "Always" t)
-                (const :tag "After completion" after-completion)
-                (const :tag "Never" nil)))
+  :type '(choice (const :tag "After completion" after-completion)
+                (const :tag "Never" nil)
+                (other :tag "Always" t)))
 
 (defun confirm-nonexistent-file-or-buffer ()
   "Whether to request confirmation before visiting a new file or buffer.