Skip to content

Commit 6c2e759

Browse files
committed
Set bounded range until 9.x.x. THanks to Don for the suggestion.
1 parent 849f777 commit 6c2e759

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

generic/tclsample.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -360,10 +360,10 @@ Sample_Init(
360360
Tcl_CmdInfo info;
361361

362362
/*
363-
* Support any TCL version starting with 8.5.0.
364-
* The "-" stands for "min-unbound" and thus includes TCL 9
363+
* Support any TCL version from 8.5.0 to 9.x.x.
364+
* The upper bound "10" is exclusive
365365
*/
366-
if (Tcl_InitStubs(interp, "8.5-", 0) == NULL) {
366+
if (Tcl_InitStubs(interp, "8.5-10", 0) == NULL) {
367367
return TCL_ERROR;
368368
}
369369

0 commit comments

Comments
 (0)