From 30235d57db17e3e7aab89fb2013d36920ef30fcc Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 30 May 2008 03:02:04 +0000 Subject: [PATCH] (Iteration Clauses): Fix incorrect "identical" examples. --- doc/misc/ChangeLog | 4 ++++ doc/misc/cl.texi | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 1c7811cb440..ff2f0292c3f 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog @@ -1,3 +1,7 @@ +2008-05-30 "Felix -" (tiny change) + + * cl.texi (Iteration Clauses): Fix incorrect "identical" examples. + 2008-05-24 Reiner Steib * gnus.texi (Filling In Threads): Additions to gnus-fetch-old-headers. diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi index 7c6cd1d0c49..20ebd6009b1 100644 --- a/doc/misc/cl.texi +++ b/doc/misc/cl.texi @@ -2599,7 +2599,7 @@ This clause simply counts up to the specified number using an internal temporary variable. The loops @example -(loop repeat n do ...) +(loop repeat (1+ n) do ...) (loop for temp to n do ...) @end example -- 2.39.5