diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2008-03-20 09:17:22 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2008-03-20 09:17:22 +0000 |
commit | 077aec278846386a3c67f8110aa4d0c0754751e8 (patch) | |
tree | aa891a71df39d69fbe6b0e67187f00e4bd0a91a1 /lisp/icomplete.el | |
parent | 0c86715d6c8107c8c206a82b2a03e5aae1db522d (diff) | |
download | emacs-077aec278846386a3c67f8110aa4d0c0754751e8.tar.gz |
(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 *.
Diffstat (limited to 'lisp/icomplete.el')
-rw-r--r-- | lisp/icomplete.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/icomplete.el b/lisp/icomplete.el index 22ab96bb591..780fca20709 100644 --- a/lisp/icomplete.el +++ b/lisp/icomplete.el @@ -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 |