diff options
author | ericm <ericm> | 2000-01-28 16:38:34 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-01-28 16:38:34 (GMT) |
commit | 7f1780c6f594cd00f51e77b191d7659f31e84743 (patch) | |
tree | cf5e1d8cdb70f1a76905008eba1cbfd83a2052c3 /ChangeLog | |
parent | ce3b1a3fb5578366ca5a44cf0a5436abe27e7a92 (diff) | |
download | tcl-7f1780c6f594cd00f51e77b191d7659f31e84743.zip tcl-7f1780c6f594cd00f51e77b191d7659f31e84743.tar.gz tcl-7f1780c6f594cd00f51e77b191d7659f31e84743.tar.bz2 |
* tests/pkg/magicchar.tcl:
* tests/autoMkindex.test: Test for fix for bug #2611.
* library/auto.tcl: Fixed the regular expression that performs $
escaping before sourcing a file to index. It was erroneously
adding \ escapes even to $'s that were already escaped,
effectively "un-escaping" those $'s. (bug #2611).
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -1,3 +1,20 @@ +2000-01-28 Eric Melski <ericm@scriptics.com> + + * tests/pkg/magicchar.tcl: + * tests/autoMkindex.test: Test for fix for bug #2611. + + * library/auto.tcl: Fixed the regular expression that performs $ + escaping before sourcing a file to index. It was erroneously + adding \ escapes even to $'s that were already escaped, + effectively "un-escaping" those $'s. (bug #2611). + +2000-01-27 Eric Melski <ericm@scriptics.com> + + * tests/autoMkindex.test: + * library/auto.tcl: Applied patch (with slight modification) from + bug #2701: auto_mkIndex uses platform dependent file paths. + Added test for fix. + 2000-01-27 Jennifer Hom <jenn@scriptics.com> * library/tcltest1.0/tcltest.tcl: Changed NormalizePath to @@ -9,12 +26,18 @@ 2000-01-27 Eric Melski <ericm@scriptics.com> + * tests/pkg/samename.tcl: test file for bug #1983 + * tests/pkgMkIndex.test: * doc/pkgMkIndex.n: * library/package.tcl: Per rfe #4097, optimized creation of direct load packages to bypass computing the list of commands added by the new package. Also made direct loading the default, and added a -lazy option. + Fixed bug #1983, dealing with pkg_mkIndex incorrectly handling + situations with two procs by the same name but in different + namespaces (ie, foo::baz and bar::baz). + 2000-01-26 Eric Melski <ericm@scriptics.com> |