summaryrefslogtreecommitdiffstats
path: root/generic/tkConsole.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2009-10-15 17:48:50 (GMT)
committerdgp <dgp@users.sourceforge.net>2009-10-15 17:48:50 (GMT)
commit8f5b9b9a67aa916120e024a34bfe85e84b7c7444 (patch)
tree6f8976b95c527baa9bc49f6b6c721f3c4f8e506e /generic/tkConsole.c
parentdae8e3e1481db52a1f19e7a2b8f2dc2d13c1f8ac (diff)
downloadtk-8f5b9b9a67aa916120e024a34bfe85e84b7c7444.zip
tk-8f5b9b9a67aa916120e024a34bfe85e84b7c7444.tar.gz
tk-8f5b9b9a67aa916120e024a34bfe85e84b7c7444.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/tkConsole.c')
-rw-r--r--generic/tkConsole.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkConsole.c b/generic/tkConsole.c
index 4b0f6b8..bdf6ccd 100644
--- a/generic/tkConsole.c
+++ b/generic/tkConsole.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkConsole.c,v 1.35 2007/12/13 15:24:14 dgp Exp $
+ * RCS: @(#) $Id: tkConsole.c,v 1.35.2.1 2009/10/15 17:48:50 dgp Exp $
*/
#include "tk.h"
@@ -233,7 +233,7 @@ Tk_InitConsoleChannels(
* 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;
}