summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstanton <stanton>1999-02-12 01:09:01 (GMT)
committerstanton <stanton>1999-02-12 01:09:01 (GMT)
commit15906d6118a0a10536f9eaff7a750e0cacf32851 (patch)
tree3b6577bcff2eff779c031924f9ab535469c41d35
parent2a8a12c1a66ef582b6d541cd56106cabeb28fdd3 (diff)
downloadtk-15906d6118a0a10536f9eaff7a750e0cacf32851.zip
tk-15906d6118a0a10536f9eaff7a750e0cacf32851.tar.gz
tk-15906d6118a0a10536f9eaff7a750e0cacf32851.tar.bz2
* README:
* generic/tk.h: * unix/configure.in: * win/README: * win/makefile.bc: * win/makefile.vc: Updated version to 8.1b2. * unix/tkUnixSend.c: Fixed one more Tcl_*ObjVar instance.
-rw-r--r--ChangeLog11
-rw-r--r--README4
-rw-r--r--generic/tk.h6
-rw-r--r--unix/configure.in4
-rw-r--r--unix/tkUnixSend.c4
-rw-r--r--win/README4
-rw-r--r--win/makefile.bc4
-rw-r--r--win/makefile.vc4
8 files changed, 25 insertions, 16 deletions
diff --git a/ChangeLog b/ChangeLog
index d8f0e3f..da6609e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+1999-02-11 <stanton@GASPODE>
+
+ * README:
+ * generic/tk.h:
+ * unix/configure.in:
+ * win/README:
+ * win/makefile.bc:
+ * win/makefile.vc: Updated version to 8.1b2.
+
+ * unix/tkUnixSend.c: Fixed one more Tcl_*ObjVar instance.
+
1999-02-04 <stanton@GASPODE>
* Various cleanup related to the Tcl_Eval and Tcl_ObjSetVar
diff --git a/README b/README
index e78bb4a..204cab3 100644
--- a/README
+++ b/README
@@ -1,13 +1,13 @@
The Tk Toolkit
-RCS: @(#) $Id: README,v 1.1.4.3 1998/12/04 07:21:17 welch Exp $
+RCS: @(#) $Id: README,v 1.1.4.4 1999/02/12 01:09:01 stanton Exp $
1. Introduction
---------------
This directory and its descendants contain the sources and documentation
for Tk, an X11 toolkit implemented with the Tcl scripting language. The
-information here constitutes the 8.1b1 release, which is the first beta
+information here constitutes the 8.1b2 release, which is the second beta
release for Tcl 8.1. This release is mostly feature complete but may
have bugs and be missing some minor features. This release is for
early adopters who are willing to help us find and fix problems.
diff --git a/generic/tk.h b/generic/tk.h
index 867c522..0b3f14b 100644
--- a/generic/tk.h
+++ b/generic/tk.h
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tk.h,v 1.1.4.7 1999/02/11 04:13:44 stanton Exp $
+ * RCS: @(#) $Id: tk.h,v 1.1.4.8 1999/02/12 01:09:02 stanton Exp $
*/
#ifndef _TK
@@ -22,11 +22,9 @@
* When version numbers change here, you must also go into the following files
* and update the version numbers:
*
- * README
* unix/configure.in
* win/makefile.bc
* win/makefile.vc
- * win/README
* library/tk.tcl
* README, win/README, unix/README, and mac/README
*
@@ -44,7 +42,7 @@
#define TK_MAJOR_VERSION 8
#define TK_MINOR_VERSION 1
#define TK_RELEASE_LEVEL 1
-#define TK_RELEASE_SERIAL 1
+#define TK_RELEASE_SERIAL 2
#define TK_VERSION "8.1"
#define TK_PATCH_LEVEL "8.1b1"
diff --git a/unix/configure.in b/unix/configure.in
index 71ee237..995cb5b 100644
--- a/unix/configure.in
+++ b/unix/configure.in
@@ -2,12 +2,12 @@ dnl This file is an input file used by the GNU "autoconf" program to
dnl generate the file "configure", which is run during Tk installation
dnl to configure the system for the local environment.
AC_INIT(../generic/tk.h)
-# RCS: @(#) $Id: configure.in,v 1.1.4.8 1999/02/11 04:13:49 stanton Exp $
+# RCS: @(#) $Id: configure.in,v 1.1.4.9 1999/02/12 01:09:02 stanton Exp $
TK_VERSION=8.1
TK_MAJOR_VERSION=8
TK_MINOR_VERSION=1
-TK_PATCH_LEVEL=b1
+TK_PATCH_LEVEL=b2
VERSION=${TK_VERSION}
if test "${prefix}" = "NONE"; then
diff --git a/unix/tkUnixSend.c b/unix/tkUnixSend.c
index 3d13a3b..f557c1f 100644
--- a/unix/tkUnixSend.c
+++ b/unix/tkUnixSend.c
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkUnixSend.c,v 1.1.4.4 1999/02/11 04:13:50 stanton Exp $
+ * RCS: @(#) $Id: tkUnixSend.c,v 1.1.4.5 1999/02/12 01:09:02 stanton Exp $
*/
#include "tkPort.h"
@@ -1011,7 +1011,7 @@ Tk_SendCmd(clientData, interp, argc, argv)
Tcl_ResetResult(interp);
Tcl_AddErrorInfo(interp, Tcl_GetVar2(localInterp,
"errorInfo", (char *) NULL, TCL_GLOBAL_ONLY));
- errorObjPtr = Tcl_GetObjVar2(localInterp, "errorCode", NULL,
+ errorObjPtr = Tcl_GetVar2Ex(localInterp, "errorCode", NULL,
TCL_GLOBAL_ONLY);
Tcl_SetObjErrorCode(interp, errorObjPtr);
}
diff --git a/win/README b/win/README
index 2a37da0..90a15a5 100644
--- a/win/README
+++ b/win/README
@@ -1,10 +1,10 @@
-Tk 8.1b1 for Windows
+Tk 8.1b2 for Windows
by Scott Stanton
Scriptics Corporation
scott.stanton@scriptics.com
-RCS: @(#) $Id: README,v 1.1.4.4 1998/12/04 07:21:24 welch Exp $
+RCS: @(#) $Id: README,v 1.1.4.5 1999/02/12 01:09:03 stanton Exp $
1. Introduction
---------------
diff --git a/win/makefile.bc b/win/makefile.bc
index fd4474f..d00a6e8 100644
--- a/win/makefile.bc
+++ b/win/makefile.bc
@@ -5,7 +5,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: makefile.bc,v 1.1.4.4 1998/12/11 01:31:04 stanton Exp $
+# RCS: @(#) $Id: makefile.bc,v 1.1.4.5 1999/02/12 01:09:03 stanton Exp $
#
@@ -19,7 +19,7 @@
ROOT = ..
TMPDIR = .
TOOLS = c:\bc45
-TCLDIR = ..\..\tcl8.1b1
+TCLDIR = ..\..\tcl8.1b2
# uncomment the following line to compile with symbols
#DEBUG=1
diff --git a/win/makefile.vc b/win/makefile.vc
index 2b0587c..6385911 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -4,7 +4,7 @@
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# Copyright (c) 1995-1997 Sun Microsystems, Inc.
-# RCS: @(#) $Id: makefile.vc,v 1.1.4.8 1999/02/12 00:52:06 stanton Exp $
+# RCS: @(#) $Id: makefile.vc,v 1.1.4.9 1999/02/12 01:09:03 stanton Exp $
# Does not depend on the presence of any environment variables in
# order to compile tcl; all needed information is derived from
@@ -28,7 +28,7 @@
ROOT = ..
TOOLS32 = c:\program files\devstudio\vc
TOOLS32_rc = c:\program files\devstudio\sharedide
-TCLDIR = ..\..\tcl8.1b1
+TCLDIR = ..\..\tcl8.1b2
# Set this to the appropriate value of /MACHINE: for your platform
MACHINE = IX86