summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorandreas_kupries <andreas_kupries@noemail.net>2002-11-01 00:28:40 (GMT)
committerandreas_kupries <andreas_kupries@noemail.net>2002-11-01 00:28:40 (GMT)
commit8d4eaf34bd7de06692557abb5da67cde6e9d3ca2 (patch)
treedc7bc4d046faa133db3902484f587ba76e94c4c0 /library
parent118ffc805d59dc94d708cc5f17dfc700c2872eb8 (diff)
downloadtcl-8d4eaf34bd7de06692557abb5da67cde6e9d3ca2.zip
tcl-8d4eaf34bd7de06692557abb5da67cde6e9d3ca2.tar.gz
tcl-8d4eaf34bd7de06692557abb5da67cde6e9d3ca2.tar.bz2
* library/word.tcl: Changed $tcl_platform to $::tcl_platform to
avoid possible scope trouble. FossilOrigin-Name: b45ecae587ae3fab45637a492a329554ad17441c
Diffstat (limited to 'library')
-rw-r--r--library/word.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/word.tcl b/library/word.tcl
index 7d85de0..edcb93a 100644
--- a/library/word.tcl
+++ b/library/word.tcl
@@ -10,12 +10,12 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: word.tcl,v 1.6 2000/01/21 02:25:38 hobbs Exp $
+# RCS: @(#) $Id: word.tcl,v 1.7 2002/11/01 00:28:51 andreas_kupries Exp $
# The following variables are used to determine which characters are
# interpreted as white space.
-if {[string equal $tcl_platform(platform) "windows"]} {
+if {[string equal $::tcl_platform(platform) "windows"]} {
# Windows style - any but a unicode space char
set tcl_wordchars "\\S"
set tcl_nonwordchars "\\s"