Index: generic/nsf.c =================================================================== diff -u -rc39e939183732462f9b41cf988c01b69b9faace5 -re13bc9e723692977a4a1ad7edff619e705838ca3 --- generic/nsf.c (.../nsf.c) (revision c39e939183732462f9b41cf988c01b69b9faace5) +++ generic/nsf.c (.../nsf.c) (revision e13bc9e723692977a4a1ad7edff619e705838ca3) @@ -16479,9 +16479,11 @@ DECR_REF_COUNT2("procNameObj", tcd->procName); if (tcd->cmd != NULL) { - /* Re-wire the original namespace into the shadowed cmd, to prevent - namespace references from becoming dangling and to keep the involved - namespaces' refcount books balanced. */ + /* + * Re-wire the original namespace into the shadowed cmd, to prevent + * namespace references from becoming dangling and to keep the involved + * namespaces' refcount books balanced. + */ ((Command *)tcd->cmd)->nsPtr = (Namespace *)tcd->origNsPtr; NSNamespaceRelease(tcd->origNsPtr); NsfCommandRelease(tcd->cmd); @@ -16903,8 +16905,10 @@ Tcl_Command procCmd = Tcl_GetCommandFromObj(interp, procNameObj); assert(procCmd != NULL); - /* Preserve the shadowed cmd's original namespace (::nsf::procs::*) for - later re-wiring in NsfProcStubDeleteProc() */ + /* + * Preserve the shadowed cmd's original namespace (::nsf::procs::*) for + * later re-wiring in NsfProcStubDeleteProc() + */ tcd->origNsPtr = Tcl_Command_nsPtr(procCmd); NSNamespacePreserve(tcd->origNsPtr); ((Command *)procCmd)->nsPtr = (Namespace *)cmdNsPtr;