summaryrefslogtreecommitdiffstats
path: root/doc/foreach.n
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2004-12-07 20:47:00 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2004-12-07 20:47:00 (GMT)
commit4603db714996884acb6bb72e19289764e571b0fb (patch)
treeaaa534ba4066a855aa092f73c8c747383a775de9 /doc/foreach.n
parent5c6e29e8442bfdb3ef6f69c4d88793afdf4114e7 (diff)
downloadtcl-4603db714996884acb6bb72e19289764e571b0fb.zip
tcl-4603db714996884acb6bb72e19289764e571b0fb.tar.gz
tcl-4603db714996884acb6bb72e19289764e571b0fb.tar.bz2
Some HTML converters prefer distances in inches to ems. [Bug 1078760]
Diffstat (limited to 'doc/foreach.n')
-rw-r--r--doc/foreach.n4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/foreach.n b/doc/foreach.n
index 6c8d28e..62a46d1 100644
--- a/doc/foreach.n
+++ b/doc/foreach.n
@@ -5,7 +5,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: foreach.n,v 1.5 2004/11/26 10:02:23 dkf Exp $
+'\" RCS: @(#) $Id: foreach.n,v 1.6 2004/12/07 20:47:16 dkf Exp $
'\"
.so man.macros
.TH foreach n "" Tcl "Tcl Built-In Commands"
@@ -55,7 +55,7 @@ This loop prints every value in a list together with the square and
cube of the value:
.CS
'\" Maintainers: notice the tab hacking below!
-.ta 32
+.ta 3i
set values {1 3 5 7 2 4 6 8} ;# Odd numbers first, for fun!
puts "Value\\tSquare\\tCube" ;# Neat-looking header
\fBforeach\fR x $values { ;# Now loop and print...