summaryrefslogtreecommitdiffstats
path: root/changes
diff options
context:
space:
mode:
authorwelch <welch@noemail.net>1998-10-23 22:22:02 (GMT)
committerwelch <welch@noemail.net>1998-10-23 22:22:02 (GMT)
commit5ab7a06db668788a309c0442f0c57d0ffe0a4c99 (patch)
treed3a70983448a80d99a6cb0738fbfc95974a4ef31 /changes
parentbc2088896fa0427faeaf38ffdfcd0d10e1a1e250 (diff)
downloadtcl-5ab7a06db668788a309c0442f0c57d0ffe0a4c99.zip
tcl-5ab7a06db668788a309c0442f0c57d0ffe0a4c99.tar.gz
tcl-5ab7a06db668788a309c0442f0c57d0ffe0a4c99.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. FossilOrigin-Name: 888280c12ed9c09392ef56bb178559545e0d6007
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)