diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-12-20 09:36:50 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-12-20 09:36:50 (GMT) |
commit | 3d1095d3487c556c156ea88136c5eed62c03b542 (patch) | |
tree | 9fdbe37405ebe23e1d7e77f2455ac88ab2096bc7 /unix/tclXtTest.c | |
parent | 972b65b569a076eb77f72d26185a309bcca4ffd4 (diff) | |
download | tcl-3d1095d3487c556c156ea88136c5eed62c03b542.zip tcl-3d1095d3487c556c156ea88136c5eed62c03b542.tar.gz tcl-3d1095d3487c556c156ea88136c5eed62c03b542.tar.bz2 |
Record the fact that all stub-enabled extensions work in Tcl 8.5+, no 8.6 (or 9.0) features are needed. (Differences between 8.x and 9.0 are handled by a different stub magic value)
Diffstat (limited to 'unix/tclXtTest.c')
-rw-r--r-- | unix/tclXtTest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclXtTest.c b/unix/tclXtTest.c index f7c2652..cb70b58 100644 --- a/unix/tclXtTest.c +++ b/unix/tclXtTest.c @@ -48,7 +48,7 @@ int Tclxttest_Init( Tcl_Interp *interp) /* Interpreter for application. */ { - if (Tcl_InitStubs(interp, "8.1", 0) == NULL) { + if (Tcl_InitStubs(interp, "8.5-", 0) == NULL) { return TCL_ERROR; } XtToolkitInitialize(); |