Mercurial > emacs
changeset 93099:898c706f1ace
(icomplete-prospects-length, icomplete-max-delay-chars,
icomplete-show-key-bindings, icomplete-minibuffer-setup-hook):
Remove spurious * from defcustom docstrings.
(icomplete-compute-delay): Fix docstring and remove spurious *.
(icomplete-delay-completions-threshold): Fix typo in docstring
and remove spurious *.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Thu, 20 Mar 2008 09:15:47 +0000 |
parents | 531ffecceb32 |
children | 4e7095d02b7a |
files | lisp/icomplete.el |
diffstat | 1 files changed, 7 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/icomplete.el Thu Mar 20 07:44:55 2008 +0000 +++ b/lisp/icomplete.el Thu Mar 20 09:15:47 2008 +0000 @@ -71,33 +71,33 @@ ;;;_* User Customization variables (defcustom icomplete-prospects-length 80 - "*Length of string displaying the prospects." + "Length of string displaying the prospects." :type 'integer :group 'icomplete) (defcustom icomplete-compute-delay .3 - "*Completions-computation stall, used only with large-number -completions - see `icomplete-delay-completions-threshold'." + "Completions-computation stall, used only with large-number completions. +See `icomplete-delay-completions-threshold'." :type 'number :group 'icomplete) (defcustom icomplete-delay-completions-threshold 400 - "*Pending-completions number over which to apply icomplete-compute-delay." + "Pending-completions number over which to apply `icomplete-compute-delay'." :type 'integer :group 'icomplete) (defcustom icomplete-max-delay-chars 3 - "*Maximum number of initial chars to apply icomplete compute delay." + "Maximum number of initial chars to apply icomplete compute delay." :type 'integer :group 'icomplete) (defcustom icomplete-show-key-bindings t - "*If non-nil, show key bindings as well as completion for sole matches." + "If non-nil, show key bindings as well as completion for sole matches." :type 'boolean :group 'icomplete) (defcustom icomplete-minibuffer-setup-hook nil - "*Icomplete-specific customization of minibuffer setup. + "Icomplete-specific customization of minibuffer setup. This hook is run during minibuffer setup if icomplete is active. It is intended for use in customizing icomplete for interoperation