We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df63b71 commit 849f777Copy full SHA for 849f777
generic/tclsample.c
@@ -359,16 +359,11 @@ Sample_Init(
359
{
360
Tcl_CmdInfo info;
361
362
-/*
363
- * This may work with 8.0, but we are using strictly stubs here,
364
- * which requires 8.1.
365
- */
366
/*
367
- * FIXME: The "-" in "8.1-" is for Tcl 9 and is not correct following the manpage:
368
- ' "A version string consisting of one or more decimal numbers separated by dots."
369
- * Nevertheless, it worked for TCL 8.6.13 and pre-9.0.1.
+ * Support any TCL version starting with 8.5.0.
+ * The "-" stands for "min-unbound" and thus includes TCL 9
370
*/
371
- if (Tcl_InitStubs(interp, "8.1-", 0) == NULL) {
+ if (Tcl_InitStubs(interp, "8.5-", 0) == NULL) {
372
return TCL_ERROR;
373
}
374
0 commit comments