Make handling of colonLocalVarCache more type-safe Since the usual macro TCL_SIZE_T does not work together with the macros for the memcount macros, a new typedef "Nsf_Tcl_Size_t" was introduced. Using a typedef is better and eases maintenance. The new typedef has a "Nsf_" prefix, since it is defined in nsf.h.
fix for transitional bug due to NS_TCL_HAVE_TIP629 Deactivating NS_TCL_HAVE_TIP629, since this needs more work to deal with the two different types of commands (before and after the TIP)
* When we activate NS_TCL_HAVE_TIP629 (TIP supporting > 2^31 * elements in object vectors), Tcl defines different objProcs * (Tcl_ObjCmdProc and Tcl_ObjCmdProc2) where the usage of these * depends on a cmdWrapperProc. Unfortunately, the resolving of * these are performed via CmdWrapperInfo, which is not exported. We * have to think how to resolve these to make this working as with * prior Tcl versions.