diff options
| author | pointsman <rolf@pointsman.de> | 2023-04-11 22:03:23 (GMT) |
|---|---|---|
| committer | pointsman <rolf@pointsman.de> | 2023-04-11 22:03:23 (GMT) |
| commit | 4d067d1cdfab28efd3e6e91b840cf62a776df709 (patch) | |
| tree | c09bc04c17ebf1c1ccbe61c6e7afbddc922cd7be /generic/tclThreadTest.c | |
| parent | 7bfc449085967b56a950905b307536bf9c4223ba (diff) | |
| parent | 06e049afdf041c22b28d0983a91a5d38d5bf2c6e (diff) | |
| download | tcl-4d067d1cdfab28efd3e6e91b840cf62a776df709.zip tcl-4d067d1cdfab28efd3e6e91b840cf62a776df709.tar.gz tcl-4d067d1cdfab28efd3e6e91b840cf62a776df709.tar.bz2 | |
Merged disabletcl8api-win in. Which adds optional Tcl 9 API only to the windows build with native tools. And fixed the error with Tcl_GetIndexFromObjStruct(). Simplified the mess in tclDecl a bit. All problems with API calls of the core itself up to now hidden by the Tcl 8 compatibility macros are fixed. Thanks, apnadkarni.
Diffstat (limited to 'generic/tclThreadTest.c')
| -rw-r--r-- | generic/tclThreadTest.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclThreadTest.c b/generic/tclThreadTest.c index a5b079a..484c4e4 100644 --- a/generic/tclThreadTest.c +++ b/generic/tclThreadTest.c @@ -272,7 +272,8 @@ ThreadObjCmd( } case THREAD_CREATE: { const char *script; - int joinable, len; + int joinable; + Tcl_Size len; if (objc == 2) { /* |
