summaryrefslogtreecommitdiffstats
path: root/changes
diff options
context:
space:
mode:
authorwelch <welch>1998-10-23 22:22:02 (GMT)
committerwelch <welch>1998-10-23 22:22:02 (GMT)
commitd92d1894eae882c8021739f066fa5266e7912e4c (patch)
treed3a70983448a80d99a6cb0738fbfc95974a4ef31 /changes
parent8fd77f6049dc41f6accfdad45a5a35f9e4d32045 (diff)
downloadtcl-d92d1894eae882c8021739f066fa5266e7912e4c.zip
tcl-d92d1894eae882c8021739f066fa5266e7912e4c.tar.gz
tcl-d92d1894eae882c8021739f066fa5266e7912e4c.tar.bz2
Fixed a typo in tcl_findLibrary, and fixed the logic that ensures
the parent directory of tcl_library is on the auto_path. Added a comment to init.tcl about how auto_path is initialized.
Diffstat (limited to 'changes')
-rw-r--r--changes8
1 files changed, 7 insertions, 1 deletions
diff --git a/changes b/changes
index 37ea500..0ef6d93 100644
--- a/changes
+++ b/changes
@@ -1,6 +1,6 @@
Recent user-visible changes to Tcl:
-RCS: @(#) $Id: changes,v 1.28 1998/10/20 20:01:22 rjohnson Exp $
+RCS: @(#) $Id: changes,v 1.29 1998/10/23 22:22:02 welch Exp $
1. No more [command1] [command2] construct for grouping multiple
commands on a single command line.
@@ -3649,3 +3649,9 @@ changed for IRIX to build n32 binaries instead of the old 32 abi
format. If you have extensions built with the o32 abi's you will need
to update them to n32 for them to work with Tcl. (RJ)
*** POTENTIAL INCOMPATIBILITY ***
+
+10/23/98 (bug fix) tcl_findLibrary had a stray ] in one of the pathnames
+it searched for the initialization script. tclInitScript.h was incorrectly
+adding the parent of tcl_library to tcl_pkgPath. This logic was moved
+into init.tcl, and the initialization of auto_path was documented.
+Thanks to Donald Porter and Tom Silva for related patches. (BW)