summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/emacs/ChangeLog4
-rw-r--r--doc/emacs/mini.texi2
2 files changed, 5 insertions, 1 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index 873681ad0d4..66bb2de921b 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,3 +1,7 @@
+2012-10-18 Dani Moncayo <dmoncayo@gmail.com>
+
+ * mini.texi (Completion Options): Fix off-by-one error. (Bug#12644)
+
2012-10-17 Glenn Morris <rgm@gnu.org>
* mini.texi (Repetition): Further copyedit.
diff --git a/doc/emacs/mini.texi b/doc/emacs/mini.texi
index 0036b67f174..e5a84bda56d 100644
--- a/doc/emacs/mini.texi
+++ b/doc/emacs/mini.texi
@@ -550,7 +550,7 @@ those completion alternatives; each subsequent invocation of the
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