Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch apn-icu Excluding Merge-Ins
This is equivalent to a diff from bf368d23e8 to 485c9811af
|
2024-08-29
| ||
| 20:35 | Merge [bf368d23e891f16e]: Eliminate "-encoding binary" in all test-cases. check-in: 737aa15e46 user: pooryorick tags: unchained, INCOMPATIBLE_LICENSE | |
|
2024-06-27
| ||
| 06:32 | Add tcl::unsupported::icu command check-in: 45b7ed88d0 user: apnadkarni tags: trunk, main | |
|
2024-06-26
| ||
| 12:02 | Remove empty "fconfigure" commands in testcases. Some indenting in *.decls files check-in: 88b75ee393 user: jan.nijtmans tags: trunk, main | |
| 03:14 | Merge trunk Closed-Leaf check-in: 485c9811af user: apnadkarni tags: apn-icu | |
|
2024-06-25
| ||
| 11:55 | Rebase to 9.0 Leaf check-in: 97abeb7414 user: jan.nijtmans tags: chan-for-review | |
|
2024-06-24
| ||
| 13:11 | TIP #699: Remove support for encoding aliases {} and "binary". check-in: c7b543846d user: jan.nijtmans tags: tip-699 | |
| 12:06 | Eliminate "-encoding binary" in all test-cases check-in: bf368d23e8 user: jan.nijtmans tags: trunk, main | |
| 11:35 | Eliminate "-encoding binary" as much as possible in testcases check-in: 3f7a792256 user: jan.nijtmans tags: core-8-branch | |
|
2024-06-23
| ||
| 20:09 | Test cases: no unneccessary "chan configure" statements, remove now obsolete comment check-in: e574afb887 user: jan.nijtmans tags: trunk, main | |
|
2024-06-21
| ||
| 10:52 | Fix test constraint check-in: 4aa775e938 user: apnadkarni tags: apn-icu | |
Changes to generic/tclBasic.c.
| ︙ | |||
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 | 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 | + + + + |
TclNRAssembleObjCmd, NULL, NULL);
cmdPtr->compileProc = &TclCompileAssembleCmd;
/* Coroutine monkeybusiness */
Tcl_CreateObjCommand(interp, "::tcl::unsupported::corotype",
CoroTypeObjCmd, NULL, NULL);
/* Load and intialize ICU */
Tcl_CreateObjCommand(interp, "::tcl::unsupported::loadIcu",
TclLoadIcuObjCmd, NULL, NULL);
/* Export unsupported commands */
nsPtr = Tcl_FindNamespace(interp, "::tcl::unsupported", NULL, 0);
if (nsPtr) {
Tcl_Export(interp, nsPtr, "*", 1);
}
#ifdef USE_DTRACE
|
| ︙ |
Added generic/tclIcu.c.