Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix [bec4219123]: test utf-4.12 fails in custom builds |
|---|---|
| Timelines: | family | ancestors | descendants | both | core-8-branch |
| Files: | files | file ages | folders |
| SHA3-256: |
1c69d40d2f111945d673f37af878dde5 |
| User & Date: | jan.nijtmans 2022-11-18 19:17:32.573 |
References
|
2022-11-18
| ||
| 19:19 | • Closed ticket [bec4219123]: test utf-4.12 fails in custom builds plus 7 other changes artifact: 8fe122063d user: jan.nijtmans | |
Context
|
2022-11-18
| ||
| 19:43 | Fix [https://core.tcl-lang.org/thread/tktview?name=16bf24d70b|16bf24d70b]: Installed Thread for Tcl ... check-in: 52902124b8 user: jan.nijtmans tags: core-8-branch | |
| 19:18 | Merge 8.7 check-in: 0890c002ce user: jan.nijtmans tags: trunk, main | |
| 19:17 | Fix [bec4219123]: test utf-4.12 fails in custom builds check-in: 1c69d40d2f user: jan.nijtmans tags: core-8-branch | |
| 15:30 | merge 8.6 check-in: 098057ba0c user: dgp tags: core-8-branch | |
Changes
Changes to generic/tclTest.c.
| ︙ | |||
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | + + | */ #undef STATIC_BUILD #undef BUILD_tcl #ifndef USE_TCL_STUBS # define USE_TCL_STUBS #endif #undef TCL_UTF_MAX #ifdef TCL_NO_DEPRECATED # define TCL_UTF_MAX 4 #else # define TCL_NO_DEPRECATED # define TCL_UTF_MAX 3 #endif #include "tclInt.h" #ifdef TCL_WITH_EXTERNAL_TOMMATH # include "tommath.h" #else # include "tclTomMath.h" #endif |
| ︙ |