emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r110573: * doc/emacs/mini.texi (Compl


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r110573: * doc/emacs/mini.texi (Completion Options): Fix off-by-one error
Date: Wed, 17 Oct 2012 20:27:17 -0700
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110573
fixes bug: http://debbugs.gnu.org/12644
author: Dani Moncayo <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2012-10-17 20:27:17 -0700
message:
  * doc/emacs/mini.texi (Completion Options): Fix off-by-one error
modified:
  doc/emacs/ChangeLog
  doc/emacs/mini.texi
=== modified file 'doc/emacs/ChangeLog'
--- a/doc/emacs/ChangeLog       2012-10-17 16:56:12 +0000
+++ b/doc/emacs/ChangeLog       2012-10-18 03:27:17 +0000
@@ -1,3 +1,7 @@
+2012-10-18  Dani Moncayo  <address@hidden>
+
+       * mini.texi (Completion Options): Fix off-by-one error.  (Bug#12644)
+
 2012-10-17  Glenn Morris  <address@hidden>
 
        * mini.texi (Repetition): Further copyedit.

=== modified file 'doc/emacs/mini.texi'
--- a/doc/emacs/mini.texi       2012-10-17 16:56:12 +0000
+++ b/doc/emacs/mini.texi       2012-10-18 03:27:17 +0000
@@ -550,7 +550,7 @@
 completion command replaces that with the next completion alternative,
 in a cyclic manner.  If you give @code{completion-cycle-threshold} a
 numeric value @var{n}, completion commands switch to this cycling
-behavior only when there are fewer than @var{n} alternatives.
+behavior only when there are @var{n} or fewer alternatives.
 
 @cindex Icomplete mode
 @findex icomplete-mode


reply via email to

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