# HG changeset patch # User Eli Zaretskii # Date 1152382334 0 # Node ID 68a288c68acc21c53a58681e45547c06d747c69c # Parent dbbc0b93cfebec993886f91c7b7aea3f7dfd0b28 (Iteration): Remove @tindex. diff -r dbbc0b93cfeb -r 68a288c68acc lispref/control.texi --- a/lispref/control.texi Sat Jul 08 18:11:49 2006 +0000 +++ b/lispref/control.texi Sat Jul 08 18:12:14 2006 +0000 @@ -475,7 +475,6 @@ 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 @@ @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