summaryrefslogtreecommitdiffstats
path: root/doc/dict.n
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2006-01-26 23:21:04 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2006-01-26 23:21:04 (GMT)
commit0fbd247a14d17e3925000c394aaa26523bd2fa12 (patch)
treeabb675f411f56110340d7adc58c43af69f0016c8 /doc/dict.n
parenta7a2245bcb966c60aadc6038744b8ced2024e529 (diff)
downloadtcl-0fbd247a14d17e3925000c394aaa26523bd2fa12.zip
tcl-0fbd247a14d17e3925000c394aaa26523bd2fa12.tar.gz
tcl-0fbd247a14d17e3925000c394aaa26523bd2fa12.tar.bz2
Fix [Bug 1415725]
Diffstat (limited to 'doc/dict.n')
-rw-r--r--doc/dict.n4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/dict.n b/doc/dict.n
index f0d4ea9..ab05bba 100644
--- a/doc/dict.n
+++ b/doc/dict.n
@@ -4,7 +4,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: dict.n,v 1.11 2004/11/12 09:01:25 das Exp $
+'\" RCS: @(#) $Id: dict.n,v 1.12 2006/01/26 23:21:06 dkf Exp $
'\"
.so man.macros
.TH dict n 8.5 Tcl "Tcl Built-In Commands"
@@ -262,7 +262,7 @@ A localizable version of \fBstring toupper\fR:
.CS
# Set up the basic C locale
set capital [\fBdict create\fR C [\fBdict create\fR]]
-foreach c {abcdefghijklmnopqrstuvwxyz} {
+foreach c [split {abcdefghijklmnopqrstuvwxyz} ""] {
\fBdict set\fR capital C $c [string toupper $c]
}