Optimization for aliases Optimized AliasAdd() and AliasGet() by avoiding the usage of Tcl_SetVar2Ex() and Tcl_GetVar2Ex(). This change impro…
Show more
Optimization for aliasesOptimized AliasAdd() and AliasGet() by avoiding the usage ofTcl_SetVar2Ex() and Tcl_GetVar2Ex(). This change improves theperformance of AliasAdd() by ~20% and AliasGet() by 10%.Strangely, Tcl does not provide an interface to theTcl_Obj-based TclObjUnsetVar2(), which is used internallyby Tcl_UnsetVar2()), such we could also avoid the latter.
Show less