summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKevin B Kenny <kennykb@acm.org>2005-11-30 15:39:37 (GMT)
committerKevin B Kenny <kennykb@acm.org>2005-11-30 15:39:37 (GMT)
commitcdd6051c36020fca89502380c47fe1369042135d (patch)
tree9682d7011acbc759ccbec85c525fffacbd213a87 /ChangeLog
parent0ffab670ecce5cacfba7a617cb3a30d8bd42c1d0 (diff)
downloadtcl-cdd6051c36020fca89502380c47fe1369042135d.zip
tcl-cdd6051c36020fca89502380c47fe1369042135d.tar.gz
tcl-cdd6051c36020fca89502380c47fe1369042135d.tar.bz2
fix [clock format -timezone :localtime] for times before the Posix Epoch
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 6 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 9cd8c74..d0b971d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -20,10 +20,12 @@
2005-11-30 Kevin Kenny <kennykb@acm.org>
- * generic/tclClock.c: Fixed a bad refcount in previous commit that led
- to a corrupted heap. Thanks to Miguel Sofer for pointing out this
- bug. Also silenced a warning that some compilers gave about the
- excessively long constant for JULIAN_SEC_POSIX_EPOCH.
+ * generic/tclClock.c: Fixed a bad refcount in previous commit that
+ led to a corrupted heap. Also silenced a warning that some
+ compilers gave about the excessively long constant for
+ JULIAN_SEC_POSIX_EPOCH. Also fixed a bug where [clock format]
+ would fail in the :localtime zone for times before the Posix
+ Epoch. Thanks to Miguel Sofer for pointing out all of these.
2005-11-29 Kevin Kenny <kennykb@acm.org>