summaryrefslogtreecommitdiff
path: root/lisp/ido.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2023-09-06 13:49:32 +0300
committerEli Zaretskii <eliz@gnu.org>2023-09-06 13:49:32 +0300
commit59c66244080b8ed19642e99fc8b940cf25ca5dfd (patch)
tree9cb2305ad9df7e18d48f88e0bc4ea25781307335 /lisp/ido.el
parent4ec4b18c2a064a8a747fd381765b26cdf1b077f5 (diff)
downloademacs-59c66244080b8ed19642e99fc8b940cf25ca5dfd.tar.gz
; * lisp/ido.el (ido-completion-buffer): Fix :type (bug#65756).
Diffstat (limited to 'lisp/ido.el')
-rw-r--r--lisp/ido.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/ido.el b/lisp/ido.el
index 98633d5d798..f42d93837c1 100644
--- a/lisp/ido.el
+++ b/lisp/ido.el
@@ -863,7 +863,8 @@ also modify the dynamic variables described for the variable
(defcustom ido-completion-buffer "*Ido Completions*"
"Name of completion buffer used by Ido.
Set to nil to disable completion buffers popping up."
- :type 'string)
+ :type '(choice (const :tag "Disable popping up completion buffer" nil)
+ string))
(defcustom ido-completion-buffer-all-completions nil
"Non-nil means to show all completions in completion buffer.