summaryrefslogtreecommitdiff
path: root/lispref
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2006-07-08 18:12:14 +0000
committerEli Zaretskii <eliz@gnu.org>2006-07-08 18:12:14 +0000
commit4faa0e04256ce959954a1a3806e32ea0b112e53d (patch)
treef40aac889186220c22946e5483042c7726f63bc2 /lispref
parent986ce8de186642c85dd078df4e780df1309086e2 (diff)
downloademacs-4faa0e04256ce959954a1a3806e32ea0b112e53d.tar.gz
(Iteration): Remove @tindex.
Diffstat (limited to 'lispref')
-rw-r--r--lispref/control.texi2
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).
write two common kinds of loops.
@defmac dolist (var list [result]) body@dots{}
-@tindex dolist
This construct executes @var{body} once for each element of
@var{list}, binding the variable @var{var} locally to hold the current
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:
@end defmac
@defmac dotimes (var count [result]) body@dots{}
-@tindex dotimes
This construct executes @var{body} once for each integer from 0
(inclusive) to @var{count} (exclusive), binding the variable @var{var}
to the integer for the current iteration. Then it returns the value