aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBasil L. Contovounesios2020-05-21 12:23:19 +0100
committerBasil L. Contovounesios2020-05-21 12:23:19 +0100
commitd714aa753b744c903d149a1f6c69262d958c313e (patch)
treef6c9ecab3f61463841fc2e0e7922f695837987a3
parentcdec3139b9125d2360223fcd1fb0fe1a52595cb7 (diff)
downloademacs-d714aa753b744c903d149a1f6c69262d958c313e.tar.gz
emacs-d714aa753b744c903d149a1f6c69262d958c313e.zip
; Bump defcustom :version in last change
* lisp/ido.el (ido-cannot-complete-command): Bump defcustom :version after default value was changed.
-rw-r--r--lisp/ido.el5
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
499even when there is only one unique completion." 499even when there is only one unique completion."
500 :type 'boolean) 500 :type 'boolean)
501 501
502(defcustom ido-cannot-complete-command 'ido-completion-auto-help 502(defcustom ido-cannot-complete-command #'ido-completion-auto-help
503 "Command run when `ido-complete' can't complete any more. 503 "Command run when `ido-complete' can't complete any more.
504The most useful values are `ido-completion-help', which pops up a 504The most useful values are `ido-completion-help', which pops up a
505window with completion alternatives; `ido-completion-auto-help', 505window with completion alternatives; `ido-completion-auto-help',
506which does the same but respects the value of 506which does the same but respects the value of
507`completion-auto-help'; or `ido-next-match' or `ido-prev-match', 507`completion-auto-help'; and `ido-next-match' or `ido-prev-match',
508which cycle the buffer list." 508which cycle the buffer list."
509 :version "28.1"
509 :type 'function) 510 :type 'function)
510 511
511 512