diff options
| author | Eli Zaretskii | 2006-07-08 18:12:14 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2006-07-08 18:12:14 +0000 |
| commit | 4faa0e04256ce959954a1a3806e32ea0b112e53d (patch) | |
| tree | f40aac889186220c22946e5483042c7726f63bc2 | |
| parent | 986ce8de186642c85dd078df4e780df1309086e2 (diff) | |
| download | emacs-4faa0e04256ce959954a1a3806e32ea0b112e53d.tar.gz emacs-4faa0e04256ce959954a1a3806e32ea0b112e53d.zip | |
(Iteration): Remove @tindex.
| -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 |