Index: generic/nsfShadow.c =================================================================== diff -u -r83e2a1bc1e93733b0459e24666828c4a3f2bce63 -r42dbfd5df1fa6248468d00c7d68fd699a5a69e64 --- generic/nsfShadow.c (.../nsfShadow.c) (revision 83e2a1bc1e93733b0459e24666828c4a3f2bce63) +++ generic/nsfShadow.c (.../nsfShadow.c) (revision 42dbfd5df1fa6248468d00c7d68fd699a5a69e64) @@ -53,7 +53,7 @@ * referred by name. * * Results: - * Tcl return code. + * A standard Tcl result. * * Side effects: * None. @@ -94,7 +94,7 @@ * replacement if necessary. * * Results: - * Tcl return code. + * A standard Tcl result. * * Side effects: * None. @@ -137,7 +137,7 @@ * specified one. * * Results: - * Tcl return code. + * A standard Tcl result. * * Side effects: * None. @@ -191,7 +191,7 @@ * nsf::proc foo {-a} {puts $a}; info body foo * * Results: - * Tcl return code. + * A standard Tcl result. * * Side effects: * None. @@ -241,7 +241,7 @@ * it. Otherwise proceed by calling the shadowed function. * * Results: - * Tcl return code. + * A standard Tcl result. * * Side effects: * None. @@ -324,7 +324,7 @@ * "proc" and add "method", "class", "object" and "frametype". * * Results: - * Tcl return code. + * A standard Tcl result. * * Side effects: * None. @@ -440,7 +440,7 @@ * pre- and/or postprocessing on these calls. * * Results: - * Tcl return code. + * A standard Tcl result. * * Side effects: * None. @@ -502,20 +502,21 @@ *---------------------------------------------------------------------- * NsfCallCommand -- * - * Calls Tcl Commands as direct as possible. The commands have to be looked - * up previously via NsfShadowTclCommands(). The element objv[0] is - * replaced with the predefined command name. + * Calls a Tcl Command as direct as possible. The commands have to be + * looked up previously via NsfShadowTclCommands(). The element objv[0] + * is replaced with the predefined command name. * * Results: - * Tcl return code. + * A standard Tcl result. * * Side effects: * None. * *---------------------------------------------------------------------- */ -int NsfCallCommand(Tcl_Interp *interp, NsfGlobalNames name, - int objc, Tcl_Obj *const objv[]) { +int +NsfCallCommand(Tcl_Interp *interp, NsfGlobalNames name, + int objc, Tcl_Obj *const objv[]) { int result; NsfShadowTclCommandInfo *ti = &RUNTIME_STATE(interp)->tclCommands[name-NSF_EXPR]; ALLOC_ON_STACK(Tcl_Obj*, objc, ov);