diff options
| -rw-r--r-- | doc/misc/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/misc/cl.texi | 2 |
2 files changed, 5 insertions, 1 deletions
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 @@ | |||
| 1 | 2008-05-30 "Felix -" <felix.1@canids.net> (tiny change) | ||
| 2 | |||
| 3 | * cl.texi (Iteration Clauses): Fix incorrect "identical" examples. | ||
| 4 | |||
| 1 | 2008-05-24 Reiner Steib <Reiner.Steib@gmx.de> | 5 | 2008-05-24 Reiner Steib <Reiner.Steib@gmx.de> |
| 2 | 6 | ||
| 3 | * gnus.texi (Filling In Threads): Additions to gnus-fetch-old-headers. | 7 | * 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 | |||
| 2599 | internal temporary variable. The loops | 2599 | internal temporary variable. The loops |
| 2600 | 2600 | ||
| 2601 | @example | 2601 | @example |
| 2602 | (loop repeat n do ...) | 2602 | (loop repeat (1+ n) do ...) |
| 2603 | (loop for temp to n do ...) | 2603 | (loop for temp to n do ...) |
| 2604 | @end example | 2604 | @end example |
| 2605 | 2605 | ||