From 077aec278846386a3c67f8110aa4d0c0754751e8 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Thu, 20 Mar 2008 09:17:22 +0000 Subject: [PATCH] (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 *. --- lisp/ChangeLog | 27 +++++++++++++++++---------- lisp/icomplete.el | 14 +++++++------- 2 files changed, 24 insertions(+), 17 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cd909c3deb..a812405fd1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,12 @@ +2008-03-20 Juanma Barranquero + + * icomplete.el (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 *. + 2008-03-20 Dan Nicolaescu * textmodes/refbib.el: @@ -7,13 +16,12 @@ * textmodes/reftex-toc.el: Don't use eval-and-compile for byte compiler pacifying defvars. (reftex-toc-mode): Only make zmacs-regions local on XEmacs. - * textmodes/reftex-index.el (zmacs-regions): Remove pacifier, not - needed. + * textmodes/reftex-index.el (zmacs-regions): Remove pacifier, + not needed. 2008-03-20 Wilson Snyder - * progmodes/verilog-mode.el (verilog-easy-menu-filter): New - function. + * progmodes/verilog-mode.el (verilog-easy-menu-filter): New function. (verilog-stmt-menu, verilog-menu): Add :help and filter it. (verilog-customize, verilog-font-customize) (electric-verilog-backward-sexp, electric-verilog-forward-sexp) @@ -21,10 +29,9 @@ (verilog-auto-search-do, verilog-auto-re-search-do) (verilog-skip-forward-comment-or-string): Fix verilog-auto expansion when a .* appears inside a string. - (verilog-re-search-forward, verilog-re-search-backward): Add - comment to recall how this works. - (verilog-read-decls): Fix AUTOINPUT/AUTOOUTPUT mis-including - genvars. + (verilog-re-search-forward, verilog-re-search-backward): + Add comment to recall how this works. + (verilog-read-decls): Fix AUTOINPUT/AUTOOUTPUT mis-including genvars. 2008-03-20 Glenn Morris @@ -38,8 +45,8 @@ (calendar-bahai-leap-base, calendar-bahai-from-absolute): Doc fixes. (calendar-absolute-from-bahai): Fix the leap-year case. (calendar-bahai-from-absolute): Re-use the Gregorian month. - (calendar-bahai-date-string, calendar-bahai-print-date): Handle - pre-Bahai dates. + (calendar-bahai-date-string, calendar-bahai-print-date): + Handle pre-Bahai dates. * calendar/cal-china.el (chinese-calendar-celestial-stem) (chinese-calendar-terrestrial-branch): Make defcustoms. diff --git a/lisp/icomplete.el b/lisp/icomplete.el index 22ab96bb59..780fca2070 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 -- 2.20.1