emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r110574: * lisp/minibuffer.el (comple


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r110574: * lisp/minibuffer.el (completion-cycle-threshold): Doc fix
Date: Wed, 17 Oct 2012 20:30:04 -0700
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110574
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2012-10-17 20:30:04 -0700
message:
  * lisp/minibuffer.el (completion-cycle-threshold): Doc fix
modified:
  lisp/ChangeLog
  lisp/minibuffer.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-10-17 23:59:24 +0000
+++ b/lisp/ChangeLog    2012-10-18 03:30:04 +0000
@@ -1,3 +1,7 @@
+2012-10-18  Glenn Morris  <address@hidden>
+
+       * minibuffer.el (completion-cycle-threshold): Doc fix.
+
 2012-10-17  Kenichi Handa  <address@hidden>
 
        * international/mule.el (set-keyboard-coding-system): Recover

=== modified file 'lisp/minibuffer.el'
--- a/lisp/minibuffer.el        2012-10-06 17:29:15 +0000
+++ b/lisp/minibuffer.el        2012-10-18 03:30:04 +0000
@@ -859,8 +859,8 @@
 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 @@
                           ;; 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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]