Index: generic/nsf.c =================================================================== diff -u -N -radedd712d56344175e1036b7b908e62054cb8c76 -rfee742c6996b9e363557de8b10ff85bb48b848ad --- generic/nsf.c (.../nsf.c) (revision adedd712d56344175e1036b7b908e62054cb8c76) +++ generic/nsf.c (.../nsf.c) (revision fee742c6996b9e363557de8b10ff85bb48b848ad) @@ -10102,7 +10102,7 @@ GuardDel(new); } } - + return result; } @@ -16580,7 +16580,7 @@ if (*nameStr == '\0' || NsfHasTclSpace(nameStr)) { return NsfPrintError(interp, "invalid method name '%s'", nameStr); } - + if (precondition != NULL && postcondition == NULL) { return NsfPrintError(interp, "%s method '%s'; when specifying a precondition (%s)" " a postcondition must be specified as well", @@ -17770,7 +17770,7 @@ cscPtr = CallStackGetTopFrame0(interp); if (unlikely(cscPtr == NULL)) { result = NULL; - + } else { if (cscPtr->frameType == NSF_CSC_TYPE_PLAIN) { result = cscPtr->cl; @@ -17784,18 +17784,18 @@ } else { methodName = NULL; } - + if (unlikely(methodName == NULL)) { result = NULL; - + } else if (object->nsPtr != NULL && FindMethod(object->nsPtr, methodName) != NULL) { /* * An object specific method was called. */ result = NULL; } else { Tcl_Command cmd; - + result = SearchCMethod(object->cl, methodName, &cmd); } } @@ -18480,7 +18480,7 @@ if (unlikely(cscPtr == NULL)) { result = NsfPrintError(interp, "called outside NSF scope"); - + } else { Tcl_Command cmd = NULL, currentCmd = NULL; const char *lookupMethodName = NULL, *methodName; @@ -26210,7 +26210,7 @@ break; case MethodpropertyNULL: /* fall through */ case MethodpropertyReturnsIdx: /* fall through */ - case MethodpropertyExistsIdx: + case MethodpropertyExistsIdx: flag = 0u; break; } @@ -29028,7 +29028,7 @@ paramPtr = NULL; } found = (paramPtr != NULL); - + if (found == 0) { result = NsfPrintError(interp, "cget: unknown configure parameter %s", nameString); goto cget_exit;