From: Jan N. <jan...@gm...> - 2008-12-16 10:49:11
|
In 7 places in the core I find calls like: (void) Tcl_GetStringResult(interp) but interp->result is not used afterwards. I'm refering to tclBasic.c (6) and tclHistory.c (1). Shouldn't these calls have been removed as part of the TIP #330 implementation? If extensions are not allowed any more to access interp->result directly, then those calss serve no purpose other than slowing down Tcl. It might break extensions which still use interp->result, but due to TIP #330, that's exactly what users of Tcl 8.6 should expect. Regards, Jan Nijtmans |