summaryrefslogtreecommitdiffstats
path: root/generic/tkWindow.c
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2009-10-15 17:48:50 (GMT)
committerdgp@users.sourceforge.net <dgp>2009-10-15 17:48:50 (GMT)
commita28300c5cbabd7e201fea944bbcb9983db7f28e7 (patch)
tree6f8976b95c527baa9bc49f6b6c721f3c4f8e506e /generic/tkWindow.c
parent7d095871357cf3032044131e7880cb4ab1ad6b71 (diff)
downloadtk-a28300c5cbabd7e201fea944bbcb9983db7f28e7.zip
tk-a28300c5cbabd7e201fea944bbcb9983db7f28e7.tar.gz
tk-a28300c5cbabd7e201fea944bbcb9983db7f28e7.tar.bz2
* generic/tkConsole.c: Relax the runtime version requirements on Tcl
* generic/tkMain.c: so that Tk 8.5.8 can [load] into Tcl 8.6 (and * generic/tkWindow.c: later 8.*) interps. * library/tk.tcl * unix/Makefile.in: * win/Makefile.in: * win/makefile.vc:
Diffstat (limited to 'generic/tkWindow.c')
-rw-r--r--generic/tkWindow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkWindow.c b/generic/tkWindow.c
index 161cdcb..6b03c4f 100644
--- a/generic/tkWindow.c
+++ b/generic/tkWindow.c
@@ -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.
*
- * RCS: @(#) $Id: tkWindow.c,v 1.89.2.3 2009/02/27 22:59:30 patthoyts Exp $
+ * RCS: @(#) $Id: tkWindow.c,v 1.89.2.4 2009/10/15 17:48:50 dgp Exp $
*/
#include "tkInt.h"
@@ -2955,7 +2955,7 @@ Initialize(
* only an issue when Tk is loaded dynamically.
*/
- if (Tcl_InitStubs(interp, TCL_VERSION, 1) == NULL) {
+ if (Tcl_InitStubs(interp, TCL_VERSION, 0) == NULL) {
return TCL_ERROR;
}