diff options
author | Kevin B Kenny <kennykb@acm.org> | 2004-09-07 17:38:55 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2004-09-07 17:38:55 (GMT) |
commit | e8e954f6105c001bef0d51e5746b3802e306a43c (patch) | |
tree | 1f689fb60e26061c50d8ead40202c15fc42bdc48 /library/tzdata/Etc | |
parent | c82232c5071d315f5a14e7828abdb48da9d6463e (diff) | |
download | tcl-e8e954f6105c001bef0d51e5746b3802e306a43c.zip tcl-e8e954f6105c001bef0d51e5746b3802e306a43c.tar.gz tcl-e8e954f6105c001bef0d51e5746b3802e306a43c.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]
Diffstat (limited to 'library/tzdata/Etc')
-rw-r--r-- | library/tzdata/Etc/GMT+0 | 4 | ||||
-rw-r--r-- | library/tzdata/Etc/GMT-0 | 4 | ||||
-rw-r--r-- | library/tzdata/Etc/GMT0 | 4 | ||||
-rw-r--r-- | library/tzdata/Etc/Greenwich | 4 | ||||
-rw-r--r-- | library/tzdata/Etc/Universal | 4 | ||||
-rw-r--r-- | library/tzdata/Etc/Zulu | 4 |
6 files changed, 12 insertions, 12 deletions
diff --git a/library/tzdata/Etc/GMT+0 b/library/tzdata/Etc/GMT+0 index e489b6c..9da66e8 100644 --- a/library/tzdata/Etc/GMT+0 +++ b/library/tzdata/Etc/GMT+0 @@ -1,5 +1,5 @@ # created by ../tools/tclZIC.tcl - do not edit if {![info exists TZData(Etc/GMT)]} { - loadTimeZoneFile Etc/GMT + LoadTimeZoneFile Etc/GMT } -set tzdata(:Etc/GMT+0) $TZData(:Etc/GMT) +set TZData(:Etc/GMT+0) $TZData(:Etc/GMT) diff --git a/library/tzdata/Etc/GMT-0 b/library/tzdata/Etc/GMT-0 index 95e6d07..d048999 100644 --- a/library/tzdata/Etc/GMT-0 +++ b/library/tzdata/Etc/GMT-0 @@ -1,5 +1,5 @@ # created by ../tools/tclZIC.tcl - do not edit if {![info exists TZData(Etc/GMT)]} { - loadTimeZoneFile Etc/GMT + LoadTimeZoneFile Etc/GMT } -set tzdata(:Etc/GMT-0) $TZData(:Etc/GMT) +set TZData(:Etc/GMT-0) $TZData(:Etc/GMT) diff --git a/library/tzdata/Etc/GMT0 b/library/tzdata/Etc/GMT0 index c09f8a5..151327b 100644 --- a/library/tzdata/Etc/GMT0 +++ b/library/tzdata/Etc/GMT0 @@ -1,5 +1,5 @@ # created by ../tools/tclZIC.tcl - do not edit if {![info exists TZData(Etc/GMT)]} { - loadTimeZoneFile Etc/GMT + LoadTimeZoneFile Etc/GMT } -set tzdata(:Etc/GMT0) $TZData(:Etc/GMT) +set TZData(:Etc/GMT0) $TZData(:Etc/GMT) diff --git a/library/tzdata/Etc/Greenwich b/library/tzdata/Etc/Greenwich index 2993a95..a729073 100644 --- a/library/tzdata/Etc/Greenwich +++ b/library/tzdata/Etc/Greenwich @@ -1,5 +1,5 @@ # created by ../tools/tclZIC.tcl - do not edit if {![info exists TZData(Etc/GMT)]} { - loadTimeZoneFile Etc/GMT + LoadTimeZoneFile Etc/GMT } -set tzdata(:Etc/Greenwich) $TZData(:Etc/GMT) +set TZData(:Etc/Greenwich) $TZData(:Etc/GMT) diff --git a/library/tzdata/Etc/Universal b/library/tzdata/Etc/Universal index 8b3ad0d..cf2fa3a 100644 --- a/library/tzdata/Etc/Universal +++ b/library/tzdata/Etc/Universal @@ -1,5 +1,5 @@ # created by ../tools/tclZIC.tcl - do not edit if {![info exists TZData(Etc/UTC)]} { - loadTimeZoneFile Etc/UTC + LoadTimeZoneFile Etc/UTC } -set tzdata(:Etc/Universal) $TZData(:Etc/UTC) +set TZData(:Etc/Universal) $TZData(:Etc/UTC) diff --git a/library/tzdata/Etc/Zulu b/library/tzdata/Etc/Zulu index 5c2db5f..a4b35da 100644 --- a/library/tzdata/Etc/Zulu +++ b/library/tzdata/Etc/Zulu @@ -1,5 +1,5 @@ # created by ../tools/tclZIC.tcl - do not edit if {![info exists TZData(Etc/UTC)]} { - loadTimeZoneFile Etc/UTC + LoadTimeZoneFile Etc/UTC } -set tzdata(:Etc/Zulu) $TZData(:Etc/UTC) +set TZData(:Etc/Zulu) $TZData(:Etc/UTC) |