mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 11:50:51 -08:00
(confirm-nonexistent-file-or-buffer): `other' must be last custom
choice. (Bug#2506)
This commit is contained in:
parent
2ae8383213
commit
b61324c301
2 changed files with 8 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue