diff options
author | Basil L. Contovounesios <contovob@tcd.ie> | 2020-05-21 12:23:19 +0100 |
---|---|---|
committer | Basil L. Contovounesios <contovob@tcd.ie> | 2020-05-21 12:23:19 +0100 |
commit | d714aa753b744c903d149a1f6c69262d958c313e (patch) | |
tree | f6c9ecab3f61463841fc2e0e7922f695837987a3 /lisp/ido.el | |
parent | cdec3139b9125d2360223fcd1fb0fe1a52595cb7 (diff) | |
download | emacs-d714aa753b744c903d149a1f6c69262d958c313e.tar.gz emacs-d714aa753b744c903d149a1f6c69262d958c313e.tar.bz2 emacs-d714aa753b744c903d149a1f6c69262d958c313e.zip |
; Bump defcustom :version in last change
* lisp/ido.el (ido-cannot-complete-command): Bump defcustom :version
after default value was changed.
Diffstat (limited to 'lisp/ido.el')
-rw-r--r-- | lisp/ido.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/ido.el b/lisp/ido.el index 15144f131ba..5716c6ff442 100644 --- a/lisp/ido.el +++ b/lisp/ido.el @@ -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) |