Mercurial > emacs
changeset 102339:824362943376
(confirm-nonexistent-file-or-buffer): `other' must be last custom
choice. (Bug#2506)
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sun, 01 Mar 2009 00:48:51 +0000 |
parents | 99db2ec427cc |
children | 9ea8a3661105 |
files | lisp/ChangeLog lisp/files.el |
diffstat | 2 files changed, 8 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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 <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
--- 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.