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/Brazil | |
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/Brazil')
-rw-r--r-- | library/tzdata/Brazil/Acre | 4 | ||||
-rw-r--r-- | library/tzdata/Brazil/DeNoronha | 4 | ||||
-rw-r--r-- | library/tzdata/Brazil/East | 4 | ||||
-rw-r--r-- | library/tzdata/Brazil/West | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/library/tzdata/Brazil/Acre b/library/tzdata/Brazil/Acre index 012b25c..a01f883 100644 --- a/library/tzdata/Brazil/Acre +++ b/library/tzdata/Brazil/Acre @@ -1,5 +1,5 @@ # created by ../tools/tclZIC.tcl - do not edit if {![info exists TZData(America/Porto_Acre)]} { - loadTimeZoneFile America/Porto_Acre + LoadTimeZoneFile America/Porto_Acre } -set tzdata(:Brazil/Acre) $TZData(:America/Porto_Acre) +set TZData(:Brazil/Acre) $TZData(:America/Porto_Acre) diff --git a/library/tzdata/Brazil/DeNoronha b/library/tzdata/Brazil/DeNoronha index 4678316..f900656 100644 --- a/library/tzdata/Brazil/DeNoronha +++ b/library/tzdata/Brazil/DeNoronha @@ -1,5 +1,5 @@ # created by ../tools/tclZIC.tcl - do not edit if {![info exists TZData(America/Noronha)]} { - loadTimeZoneFile America/Noronha + LoadTimeZoneFile America/Noronha } -set tzdata(:Brazil/DeNoronha) $TZData(:America/Noronha) +set TZData(:Brazil/DeNoronha) $TZData(:America/Noronha) diff --git a/library/tzdata/Brazil/East b/library/tzdata/Brazil/East index 7fa21c1..f49e447 100644 --- a/library/tzdata/Brazil/East +++ b/library/tzdata/Brazil/East @@ -1,5 +1,5 @@ # created by ../tools/tclZIC.tcl - do not edit if {![info exists TZData(America/Sao_Paulo)]} { - loadTimeZoneFile America/Sao_Paulo + LoadTimeZoneFile America/Sao_Paulo } -set tzdata(:Brazil/East) $TZData(:America/Sao_Paulo) +set TZData(:Brazil/East) $TZData(:America/Sao_Paulo) diff --git a/library/tzdata/Brazil/West b/library/tzdata/Brazil/West index e2bbabf..8d3386d 100644 --- a/library/tzdata/Brazil/West +++ b/library/tzdata/Brazil/West @@ -1,5 +1,5 @@ # created by ../tools/tclZIC.tcl - do not edit if {![info exists TZData(America/Manaus)]} { - loadTimeZoneFile America/Manaus + LoadTimeZoneFile America/Manaus } -set tzdata(:Brazil/West) $TZData(:America/Manaus) +set TZData(:Brazil/West) $TZData(:America/Manaus) |