]> git.eshelyaron.com Git - emacs.git/commitdiff
(Iteration Clauses): Fix incorrect "identical" examples.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 30 May 2008 03:02:04 +0000 (03:02 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 30 May 2008 03:02:04 +0000 (03:02 +0000)
doc/misc/ChangeLog
doc/misc/cl.texi

index 1c7811cb440d9d469440743a3229141aa1aa1999..ff2f0292c3f9f46bba3355e42285b78e3526486a 100644 (file)
@@ -1,3 +1,7 @@
+2008-05-30  "Felix -"  <felix.1@canids.net>  (tiny change)
+
+       * cl.texi (Iteration Clauses): Fix incorrect "identical" examples.
+
 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
 
        * gnus.texi (Filling In Threads): Additions to gnus-fetch-old-headers.
index 7c6cd1d0c49f9eb451b5dd932a9fe810f39c8d74..20ebd6009b16341965ebae32624beb581bc1d55c 100644 (file)
@@ -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