]> git.eshelyaron.com Git - emacs.git/commitdiff
(icomplete-prospects-length, icomplete-max-delay-chars,
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 20 Mar 2008 09:17:22 +0000 (09:17 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 20 Mar 2008 09:17:22 +0000 (09:17 +0000)
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
lisp/icomplete.el

index cd909c3deb9db0e040c670b6929d3c358bcc7c5a..a812405fd1a4a7a020fde8cfdd9a545f7246ac98 100644 (file)
@@ -1,3 +1,12 @@
+2008-03-20  Juanma Barranquero  <lekktu@gmail.com>
+
+       * 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  <dann@ics.uci.edu>
 
        * textmodes/refbib.el:
        * 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  <wsnyder@wsnyder.org>
 
-       * 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)
        (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  <rgm@gnu.org>
 
@@ -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.
index 22ab96bb5914262d76e029aa52c2140d807fe2ba..780fca207096328407dd7eb67b1fe120f3a00b22 100644 (file)
 
 ;;;_* 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