From: Glenn Morris Date: Sun, 1 Mar 2009 00:48:51 +0000 (+0000) Subject: (confirm-nonexistent-file-or-buffer): `other' must be last custom X-Git-Tag: emacs-pretest-23.0.92~401 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b61324c301db8723b3cb79052ebc8a31990ee2c2;p=emacs.git (confirm-nonexistent-file-or-buffer): `other' must be last custom choice. (Bug#2506) --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5bd2e9d3835..8be0d110d07 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2009-03-01 Glenn Morris + + * files.el (confirm-nonexistent-file-or-buffer): `other' must be last + custom choice. (Bug#2506) + 2009-02-28 Eli Zaretskii * progmodes/grep.el (grep-process-setup) [windows-nt msdos]: Use diff --git a/lisp/files.el b/lisp/files.el index da8db21274b..afe6b4c3b63 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -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.