; * lisp/ido.el (ido-completion-buffer): Fix :type (bug#65756).

This commit is contained in:
Eli Zaretskii 2023-09-06 13:49:32 +03:00
parent 4ec4b18c2a
commit 59c6624408

View file

@ -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.