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 /tools/tsdPerf.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 'tools/tsdPerf.c')
-rw-r--r-- | tools/tsdPerf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/tsdPerf.c b/tools/tsdPerf.c index 40004b1..a75e962 100644 --- a/tools/tsdPerf.c +++ b/tools/tsdPerf.c @@ -40,7 +40,7 @@ tsdPerfGetObjCmd(ClientData cdata, Tcl_Interp *interp, int objc, Tcl_Obj *const int Tsdperf_Init(Tcl_Interp *interp) { - if (Tcl_InitStubs(interp, TCL_VERSION, 0) == NULL) { + if (Tcl_InitStubs(interp, "8.5-", 0) == NULL) { return TCL_ERROR; } |