From 281c9d2b20ae897e72b1638ac3e241454d63f8d4 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Wed, 17 Oct 2012 20:30:04 -0700 Subject: [PATCH] * lisp/minibuffer.el (completion-cycle-threshold): Doc fix --- lisp/ChangeLog | 4 ++++ lisp/minibuffer.el | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 602569156f7..398b058a874 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2012-10-18 Glenn Morris + + * minibuffer.el (completion-cycle-threshold): Doc fix. + 2012-10-17 Kenichi Handa * international/mule.el (set-keyboard-coding-system): Recover diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index a9be1749423..f464b42182d 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el @@ -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) -- 2.39.2