diff options
Diffstat (limited to 'generic/tclBasic.c')
| -rw-r--r-- | generic/tclBasic.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 6ce4234..16cc531 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -1198,6 +1198,10 @@ Tcl_CreateInterp(void) 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) { |
