Skip to content

Commit

Permalink
Set bounded range until 9.x.x. THanks to Don for the suggestion.
Browse files Browse the repository at this point in the history
  • Loading branch information
oehhar committed Dec 17, 2024
1 parent 849f777 commit 6c2e759
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions generic/tclsample.c
Original file line number Diff line number Diff line change
Expand Up @@ -360,10 +360,10 @@ Sample_Init(
Tcl_CmdInfo info;

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

Expand Down

0 comments on commit 6c2e759

Please sign in to comment.