]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/minibuffer.el (completion-cycle-threshold): Doc fix
authorGlenn Morris <rgm@gnu.org>
Thu, 18 Oct 2012 03:30:04 +0000 (20:30 -0700)
committerGlenn Morris <rgm@gnu.org>
Thu, 18 Oct 2012 03:30:04 +0000 (20:30 -0700)
lisp/ChangeLog
lisp/minibuffer.el

index 602569156f7e0429c3fbc776099f520831e3d554..398b058a87463b6b52e7dc14d53215b6214290e6 100644 (file)
@@ -1,3 +1,7 @@
+2012-10-18  Glenn Morris  <rgm@gnu.org>
+
+       * minibuffer.el (completion-cycle-threshold): Doc fix.
+
 2012-10-17  Kenichi Handa  <handa@gnu.org>
 
        * international/mule.el (set-keyboard-coding-system): Recover
index a9be1749423c6bc2be9079ce32736eaafa3298ed..f464b42182dedd855a072f9635204b2d9c0f0a34 100644 (file)
@@ -859,8 +859,8 @@ Depending on this setting `minibuffer-complete' may use cycling,
 like `minibuffer-force-complete'.
 If nil, cycling is never used.
 If t, cycling is always used.
-If an integer, cycling is used as soon as there are fewer completion
-candidates than this number."
+If an integer, cycling is used so long as there are not more
+completion candidates than this number."
   :version "24.1"
   :type completion--cycling-threshold-type)
 
@@ -977,7 +977,7 @@ when the buffer's text is already an exact match."
                           ;; This signal an (intended) error if comps is too
                           ;; short or if completion-cycle-threshold is t.
                           (consp (nthcdr threshold comps)))))
-              ;; Fewer than completion-cycle-threshold remaining
+              ;; Not more than completion-cycle-threshold remaining
               ;; completions: let's cycle.
               (setq completed t exact t)
               (completion--cache-all-sorted-completions comps)