diff options
| -rw-r--r-- | lispref/control.texi | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lispref/control.texi b/lispref/control.texi index b6df04810b7..d64b03037d6 100644 --- a/lispref/control.texi +++ b/lispref/control.texi | |||
| @@ -475,7 +475,6 @@ body, just the end test (which also does the real work of moving point). | |||
| 475 | write two common kinds of loops. | 475 | write two common kinds of loops. |
| 476 | 476 | ||
| 477 | @defmac dolist (var list [result]) body@dots{} | 477 | @defmac dolist (var list [result]) body@dots{} |
| 478 | @tindex dolist | ||
| 479 | This construct executes @var{body} once for each element of | 478 | This construct executes @var{body} once for each element of |
| 480 | @var{list}, binding the variable @var{var} locally to hold the current | 479 | @var{list}, binding the variable @var{var} locally to hold the current |
| 481 | element. Then it returns the value of evaluating @var{result}, or | 480 | element. Then it returns the value of evaluating @var{result}, or |
| @@ -491,7 +490,6 @@ could use @code{dolist} to define the @code{reverse} function: | |||
| 491 | @end defmac | 490 | @end defmac |
| 492 | 491 | ||
| 493 | @defmac dotimes (var count [result]) body@dots{} | 492 | @defmac dotimes (var count [result]) body@dots{} |
| 494 | @tindex dotimes | ||
| 495 | This construct executes @var{body} once for each integer from 0 | 493 | This construct executes @var{body} once for each integer from 0 |
| 496 | (inclusive) to @var{count} (exclusive), binding the variable @var{var} | 494 | (inclusive) to @var{count} (exclusive), binding the variable @var{var} |
| 497 | to the integer for the current iteration. Then it returns the value | 495 | to the integer for the current iteration. Then it returns the value |