summaryrefslogtreecommitdiffstats
path: root/changes
diff options
context:
space:
mode:
authorjingham <jingham@noemail.net>1998-11-11 07:46:04 (GMT)
committerjingham <jingham@noemail.net>1998-11-11 07:46:04 (GMT)
commit781116b6e0e1d94faf6e85f938815da328b0a097 (patch)
tree1a0e2266cb30dd1c4c53416b756847f060caec11 /changes
parent9a646b4601abb0d55e45d7d7230dd1ff6e357053 (diff)
downloadtcl-781116b6e0e1d94faf6e85f938815da328b0a097.zip
tcl-781116b6e0e1d94faf6e85f938815da328b0a097.tar.gz
tcl-781116b6e0e1d94faf6e85f938815da328b0a097.tar.bz2
Updated Changes file, and added Vince Darley's suggested change to TclMacExit.
FossilOrigin-Name: 0c401604038bf74f88f6d9bf212d88ea6432bace
Diffstat (limited to 'changes')
-rw-r--r--changes12
1 files changed, 8 insertions, 4 deletions
diff --git a/changes b/changes
index 957a145..c877d6f 100644
--- a/changes
+++ b/changes
@@ -1,6 +1,6 @@
Recent user-visible changes to Tcl:
-RCS: @(#) $Id: changes,v 1.33 1998/11/10 06:56:47 jingham Exp $
+RCS: @(#) $Id: changes,v 1.34 1998/11/11 07:46:45 jingham Exp $
1. No more [command1] [command2] construct for grouping multiple
commands on a single command line.
@@ -3665,7 +3665,11 @@ close in a fileevent script are actually reflected by the close command. (BW)
package requires and packages split among scripts and binary files.
Also fixed ommision of global for errorInfo in tcl_findLibrary. (BW)
-11/08/98 (bug fix) Fixed TclMacRegisterResourceFork to always detect the case where a file
-is opened a second time with the same permissions. In IM, it claims that this will
+11/08/98 (bug fix) Fixed the resource command to always detect the case where a file
+is opened a second time with the same permissions. IM claims that this will
always cause the same FileRef to be returned, but in MacOS 8.1+, this is no longer the
-case, so we have to test for this explicitly.
+case, so we have to test for this equality explicitly. (JI)
+
+11/10/98 (feature change) When compiling with Metrowerk's MSL, use the exit function from
+MSL rather than ExitToShell. This allows MSL to clean up its temporary files. Thanks to
+Vince Darley for this improvement. (JI)