1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

; Bump defcustom :version in last change

* lisp/ido.el (ido-cannot-complete-command): Bump defcustom :version
after default value was changed.
This commit is contained in:
Basil L. Contovounesios 2020-05-21 12:23:19 +01:00
parent cdec3139b9
commit d714aa753b

View file

@ -499,13 +499,14 @@ This means that \\[ido-complete] must always be followed by \\[ido-exit-minibuff
even when there is only one unique completion."
:type 'boolean)
(defcustom ido-cannot-complete-command 'ido-completion-auto-help
(defcustom ido-cannot-complete-command #'ido-completion-auto-help
"Command run when `ido-complete' can't complete any more.
The most useful values are `ido-completion-help', which pops up a
window with completion alternatives; `ido-completion-auto-help',
which does the same but respects the value of
`completion-auto-help'; or `ido-next-match' or `ido-prev-match',
`completion-auto-help'; and `ido-next-match' or `ido-prev-match',
which cycle the buffer list."
:version "28.1"
:type 'function)