summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKevin B Kenny <kennykb@acm.org>2004-09-08 15:55:42 (GMT)
committerKevin B Kenny <kennykb@acm.org>2004-09-08 15:55:42 (GMT)
commitb53a04548e71d0ecf88493b1b5b78befc220ee32 (patch)
treeae9d77def8c17452675c9a5904571fdf36e17289 /ChangeLog
parent30204f6dca832947b87b204f4fb74bccbd0be640 (diff)
downloadtcl-b53a04548e71d0ecf88493b1b5b78befc220ee32.zip
tcl-b53a04548e71d0ecf88493b1b5b78befc220ee32.tar.gz
tcl-b53a04548e71d0ecf88493b1b5b78befc220ee32.tar.bz2
fixed clock-34.* to use same time zone on input and output
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog11
1 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 99f44b5..46de786 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,8 +4,15 @@
[Bug 1024058]
* generic/tclClock.c (TclClockMktimeObjCmd): Fixed a bug where
the month was scanned incorrectly in -timezone :localtime.
- * tests/clock.test (clock-40.1): Added regression test case for
- the bug where month was scanned incorrectly in -timezone :localtime.
+ * tests/clock.test (clock-34.*,clock-40.1): Adjusted the
+ clock-34.* test cases so that the consistency check is performed
+ in :localtime rather than the current time zone. This change
+ allows dealing with issues where the C library has a different
+ idea of DST conversion than Tcl. (Real fix would be to break
+ TclGetDate into separate parser and time converter, and do
+ the time conversion in clock.tcl. That's for another day.)
+ Added regression test case for the bug where month was scanned
+ incorrectly in -timezone :localtime.
2004-09-07 David Gravereaux <davygrvy@pobox.com>