aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2023-09-06 13:49:32 +0300
committerEli Zaretskii2023-09-06 13:49:32 +0300
commit59c66244080b8ed19642e99fc8b940cf25ca5dfd (patch)
tree9cb2305ad9df7e18d48f88e0bc4ea25781307335
parent4ec4b18c2a064a8a747fd381765b26cdf1b077f5 (diff)
downloademacs-59c66244080b8ed19642e99fc8b940cf25ca5dfd.tar.gz
emacs-59c66244080b8ed19642e99fc8b940cf25ca5dfd.zip
; * lisp/ido.el (ido-completion-buffer): Fix :type (bug#65756).
-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
863(defcustom ido-completion-buffer "*Ido Completions*" 863(defcustom ido-completion-buffer "*Ido Completions*"
864 "Name of completion buffer used by Ido. 864 "Name of completion buffer used by Ido.
865Set to nil to disable completion buffers popping up." 865Set to nil to disable completion buffers popping up."
866 :type 'string) 866 :type '(choice (const :tag "Disable popping up completion buffer" nil)
867 string))
867 868
868(defcustom ido-completion-buffer-all-completions nil 869(defcustom ido-completion-buffer-all-completions nil
869 "Non-nil means to show all completions in completion buffer. 870 "Non-nil means to show all completions in completion buffer.