...I wanted in the environment into the Tcl env array by hand using code like this, before calling Tk_Init
for (i = 0; i < arrCt; i++) {
char * value = getenv(setThese[i]);
Tcl_SetVar2(interp, "env", setThese[i], value, TCL_GLOBAL_ONLY);
}
I don't know why it didn't work, but it...