; * lisp/ido.el (ido-completion-buffer): Fix :type (bug#65756).
This commit is contained in:
parent
4ec4b18c2a
commit
59c6624408
1 changed files with 2 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue