]> git.eshelyaron.com Git - emacs.git/commitdiff
; Bump defcustom :version in last change
authorBasil L. Contovounesios <contovob@tcd.ie>
Thu, 21 May 2020 11:23:19 +0000 (12:23 +0100)
committerBasil L. Contovounesios <contovob@tcd.ie>
Thu, 21 May 2020 11:23:19 +0000 (12:23 +0100)
* lisp/ido.el (ido-cannot-complete-command): Bump defcustom :version
after default value was changed.

lisp/ido.el

index 15144f131ba81126dcdf83b25f7fe9c120630a07..5716c6ff44206ad49e174477904eff362486805b 100644 (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)