summaryrefslogtreecommitdiffstats
path: root/changes
diff options
context:
space:
mode:
Diffstat (limited to 'changes')
-rw-r--r--changes16
1 files changed, 13 insertions, 3 deletions
diff --git a/changes b/changes
index 6ea7ece..31f8f87 100644
--- a/changes
+++ b/changes
@@ -1,6 +1,6 @@
Recent user-visible changes to Tcl:
-RCS: @(#) $Id: changes,v 1.22 1998/09/30 23:59:08 stanton Exp $
+RCS: @(#) $Id: changes,v 1.23 1998/10/05 22:32:56 escoffon Exp $
1. No more [command1] [command2] construct for grouping multiple
commands on a single command line.
@@ -3611,5 +3611,15 @@ GlobalReAlloc API was not correctly re-allocating blocks that were
32k+. The fix was to use newer Win32 APIs (HeapAlloc, HeapFree, and
HeapReAlloc.) (BS)
-======== Changes for 8.0 go above this line ========
-======== Changes for 8.1 go below this line ========
+10/5/98 (bug fix) Fixed bug in pkg_mkIndex that caused some files that do
+a "package require" of packages in the Tcl libraries to give a warning like
+ warning: "xx.tcl" provides more than one package ({xx 2.0} {yy 0.3})
+and generate a broken pkgIndex.tcl file. (EMS)
+
+10/5/98 (bug fix) Pkg_mkIndex was not doing a case-insensitive comparison
+of extensions to determine whether to load or source a file. Thus, under
+Windows, MYDLLNAME.DLL was sourced, and mydllname.dll loaded. (EMS)
+
+10/5/98 (new feature) Created a new Tcl_Obj type, "procbody". This object's
+internal representation holds a pointer to a Proc structure. Extended
+TclCreateProc to take both strings and "procbody"