summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorkennykb <kennykb@noemail.net>2004-09-07 17:38:54 (GMT)
committerkennykb <kennykb@noemail.net>2004-09-07 17:38:54 (GMT)
commit150778b2e20316d4b7798a2e62d46c9adb6d5f9b (patch)
tree1f689fb60e26061c50d8ead40202c15fc42bdc48 /tools
parent17b3523229f65f006bc988d2f276fd53c1cdfe4d (diff)
downloadtcl-150778b2e20316d4b7798a2e62d46c9adb6d5f9b.zip
tcl-150778b2e20316d4b7798a2e62d46c9adb6d5f9b.tar.gz
tcl-150778b2e20316d4b7798a2e62d46c9adb6d5f9b.tar.bz2
* generic/tclTimer.c: Removed a premature optimisation that
attempted to store the assoc data in the client data; the optimisation caused a bug that [after] would overwrite its imports. [Bug 1016167] * library/clock.tcl (InitTZData, ClearCaches): Changed so that the in-memory time zone :UTC (and its aliases) always gets reinitialised, in case tzdata is absent. [Bug 1019537, 1023779] * library/tzdata/*: Regenerated. * tests/clock.test (clock-31.*, clock-39.1): Corrected a problem where the 'system' locale tests fail on a non-English Windows machine. [Bug 1023761]. Added a test to make sure that alias time zones load correctly. [Bug 1023779]. * tools/tclZIC.tcl (writeLinks): Corrected a problem where alias time zone names were written incorrectly, causing them to fail to load at run time. [Bug 1023779]. * win/tclWinTime.c (Tcl_GetTime): Eliminated CPUID tests on Win64 - assuming that HAL vendors now do a better job of keeping the performance counters synchronized among CPU's. [Bug 1020445] FossilOrigin-Name: 58fb9afc4421cc6c54f32bf4ab254ee7c2f7f439
Diffstat (limited to 'tools')
-rwxr-xr-xtools/tclZIC.tcl6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/tclZIC.tcl b/tools/tclZIC.tcl
index e6bbb5a..9ad1dd3 100755
--- a/tools/tclZIC.tcl
+++ b/tools/tclZIC.tcl
@@ -29,7 +29,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: tclZIC.tcl,v 1.1 2004/08/18 19:59:09 kennykb Exp $
+# RCS: @(#) $Id: tclZIC.tcl,v 1.2 2004/09/07 17:38:59 kennykb Exp $
#
#----------------------------------------------------------------------
@@ -1383,9 +1383,9 @@ proc writeLinks { outDir } {
# Create code for the synonym
set linkTo $links($zoneName)
- set sourceCmd "\n [list loadTimeZoneFile $linkTo]\n"
+ set sourceCmd "\n [list LoadTimeZoneFile $linkTo]\n"
set ifCmd [list if "!\[info exists TZData($linkTo)\]" $sourceCmd]
- set setCmd "set tzdata(:$zoneName) \$TZData(:$linkTo)"
+ set setCmd "set TZData(:$zoneName) \$TZData(:$linkTo)"
# Write the file