summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README19
-rw-r--r--generic/tcl.h4
-rw-r--r--unix/configure.in2
3 files changed, 17 insertions, 8 deletions
diff --git a/README b/README
index 98e03b7..017429f 100644
--- a/README
+++ b/README
@@ -1,12 +1,19 @@
Tcl
-SCCS: %Z% $Id: README,v 1.6 1998/07/20 16:55:10 welch Exp $
+SCCS: %Z% $Id: README,v 1.7 1998/07/29 22:24:29 welch Exp $
0. Preface
----------
-This is a pre-release of 8.0.3, tcl_patchLevel "8.0.3-3"
-we expect the 8.0.3 release to continue to change with the adoption
-of more patches, etc. This release is being made early to help
+This is a pre-release of 8.0.3, tcl_patchLevel "8.0.3-4"
+This is close, but not final. There are two major bugs we
+plan to fix before 8.0.3 goes final:
+1. On UNIX, socket I/O is not properly retried after signals.
+2. On Windows, keyboard traversal events from Alt-key sequences
+are not properly handled. In particular, if you select the
+system menu Close command from the keyboard, you do not get
+the WM_DELETE_WINDOW protocol event.
+
+This release is being made early to help
with the Consortium CD project. Please do not advertise or
circulate this release widely. If you have problems, please figure
out a fix and include a patch or a lot of detail, then send
@@ -22,8 +29,10 @@ save and reload compiled byte-codes.
3. Miscellaneous bug fixes to windows socket code.
4. Various bug fixes derived from Victor Dukhovni's "jumbo" patch described
on http://www.scriptics.com/resource/download/patches/tcl80p2/
-5. Patches to support [incr Tcl]. We expect changes in this area.
+5. Patches to support [incr Tcl].
6. More enhancements, including a new implementation of pkg_mkIndex.
+7. A new implementation of auto_mkindex to support [incr Tcl] classes.
+8. New IMPORT/EXPORT macros to facilitate building DLL's on windows.
1. Introduction
diff --git a/generic/tcl.h b/generic/tcl.h
index dc7b2ad..2695e58 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * SCCS: %Z% $Id: tcl.h,v 1.17 1998/07/29 20:27:59 escoffon Exp $
+ * SCCS: %Z% $Id: tcl.h,v 1.18 1998/07/29 22:24:11 welch Exp $
*/
#ifndef _TCL
@@ -41,7 +41,7 @@
#define TCL_RELEASE_SERIAL 3
#define TCL_VERSION "8.0"
-#define TCL_PATCH_LEVEL "8.0.3-3"
+#define TCL_PATCH_LEVEL "8.0.3-4"
/*
* The following definitions set up the proper options for Windows
diff --git a/unix/configure.in b/unix/configure.in
index 67e833c..f33e9c8 100644
--- a/unix/configure.in
+++ b/unix/configure.in
@@ -7,7 +7,7 @@ AC_INIT(../generic/tcl.h)
TCL_VERSION=8.0
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=0
-TCL_PATCH_LEVEL=".3-3"
+TCL_PATCH_LEVEL=".3-4"
VERSION=${TCL_VERSION}
if test "${prefix}" = "NONE"; then