# HG changeset patch # User Stefan Monnier # Date 1212116524 0 # Node ID f035c0b179dc793fbf3bdee1a5fb863ee40f215e # Parent bb81093688a0da47c2f67c845d4ad5ee2ad5f36a (Iteration Clauses): Fix incorrect "identical" examples. diff -r bb81093688a0 -r f035c0b179dc doc/misc/ChangeLog --- a/doc/misc/ChangeLog Fri May 30 03:01:07 2008 +0000 +++ b/doc/misc/ChangeLog Fri May 30 03:02:04 2008 +0000 @@ -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 -r bb81093688a0 -r f035c0b179dc doc/misc/cl.texi --- a/doc/misc/cl.texi Fri May 30 03:01:07 2008 +0000 +++ b/doc/misc/cl.texi Fri May 30 03:02:04 2008 +0000 @@ -2599,7 +2599,7 @@ internal temporary variable. The loops @example -(loop repeat n do ...) +(loop repeat (1+ n) do ...) (loop for temp to n do ...) @end example