# HG changeset patch # User Glenn Morris # Date 1235868531 0 # Node ID 824362943376025a942e512c5eddf99af7696e36 # Parent 99db2ec427cc414e4bdea49eb3bf2cf88516be31 (confirm-nonexistent-file-or-buffer): `other' must be last custom choice. (Bug#2506) diff -r 99db2ec427cc -r 824362943376 lisp/ChangeLog --- a/lisp/ChangeLog Sat Feb 28 23:07:42 2009 +0000 +++ b/lisp/ChangeLog Sun Mar 01 00:48:51 2009 +0000 @@ -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 -r 99db2ec427cc -r 824362943376 lisp/files.el --- a/lisp/files.el Sat Feb 28 23:07:42 2009 +0000 +++ b/lisp/files.el Sun Mar 01 00:48:51 2009 +0000 @@ -1138,9 +1138,9 @@ 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.