summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKevin B Kenny <kennykb@acm.org>2003-02-01 23:37:28 (GMT)
committerKevin B Kenny <kennykb@acm.org>2003-02-01 23:37:28 (GMT)
commit82148735c813322bfb1f0fc68327f4dca5c445d2 (patch)
treef0e6ff72ed25f343bd9b1789ecf7d2f55c8ff307 /ChangeLog
parent2186d565ba4e59be880114e0330457cc9143c2d4 (diff)
downloadtcl-82148735c813322bfb1f0fc68327f4dca5c445d2.zip
tcl-82148735c813322bfb1f0fc68327f4dca5c445d2.tar.gz
tcl-82148735c813322bfb1f0fc68327f4dca5c445d2.tar.bz2
* generic/tclLoad.c: Changed the code so that if Tcl_StaticPackage
is called to report the same package as being loaded in two interps, it shows up in [info loaded {}] in both of them (previously, it didn't appear in the static package list in the second. * tests/load.test Added regression test for the above bug. [Bug 670042]
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3e9a770..78c17f0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
2003-02-01 Kevin Kenny <kennykb@users.sourceforge.net>
+ * generic/tclLoad.c: Changed the code so that if Tcl_StaticPackage
+ is called to report the same package as being loaded in two interps,
+ it shows up in [info loaded {}] in both of them (previously,
+ it didn't appear in the static package list in the second.
+
+ * tests/load.test Added regression test for the above bug.
+ [Bug 670042]
+
+2003-02-01 Kevin Kenny <kennykb@users.sourceforge.net>
+
* generic/tclClock.c: Fixed a bug that incorrectly allowed
[clock clicks {}] and [clock clicks -] to be accepted as if
they were [clock clicks -milliseconds].