summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorericm <ericm>2000-01-29 00:12:46 (GMT)
committerericm <ericm>2000-01-29 00:12:46 (GMT)
commitbfc121a8bd79c18c8d1b7760be65a4db3ad18bfd (patch)
treeee6d1327507899d558998df83d6f9523690a6c56 /ChangeLog
parentc6f3f1f2051c0e0663480e2fb858e9436d3adcc4 (diff)
downloadtcl-bfc121a8bd79c18c8d1b7760be65a4db3ad18bfd.zip
tcl-bfc121a8bd79c18c8d1b7760be65a4db3ad18bfd.tar.gz
tcl-bfc121a8bd79c18c8d1b7760be65a4db3ad18bfd.tar.bz2
* tests/pkg/magicchar2.tcl:
* tests/autoMkindex.test: Test for auto loader fix (bug #2480). * library/init.tcl: auto_load was using [info commands $name] to determine if a given command was available; if the command name had * or [] it, this would fail because info commands uses glob-style matching. This is fixed. (Bug #2480).
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog14
1 files changed, 14 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e6e295a..f0defbf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,19 @@
2000-01-28 Eric Melski <ericm@scriptics.com>
+ * tests/pkg/magicchar2.tcl:
+ * tests/autoMkindex.test: Test for auto loader fix (bug #2480).
+
+ * library/init.tcl: auto_load was using [info commands $name] to
+ determine if a given command was available; if the command name
+ had * or [] it, this would fail because info commands uses
+ glob-style matching. This is fixed. (Bug #2480).
+
+ * tests/pkg/spacename.tcl:
+ * tests/pkgMkIndex.test: Tests for fix for bug #2360.
+
+ * library/package.tcl: Fixed to extract only the first element of
+ the list returned by auto_qualify (bug #2360).
+
* tests/pkg/magicchar.tcl:
* tests/autoMkindex.test: Test for fix for bug #2611.