Index: generic/nsf.c =================================================================== diff -u -r2892d433e290401493c7cb5bbdd873556149ba44 -r7ac9328ee6b3fd77da6da4235e10f29c3c4513de --- generic/nsf.c (.../nsf.c) (revision 2892d433e290401493c7cb5bbdd873556149ba44) +++ generic/nsf.c (.../nsf.c) (revision 7ac9328ee6b3fd77da6da4235e10f29c3c4513de) @@ -3229,12 +3229,12 @@ * object system, but this seems neccessary by now. */ Tcl_Obj *bootstrapObj = Tcl_GetVar2Ex(interp, "::nsf::bootstrap", NULL, TCL_GLOBAL_ONLY); - fprintf(stderr, "bootStrapObv = %p\n", bootstrapObj); - result = TCL_OK; if (bootstrapObj == NULL) { result = NsfVarErrMsg(interp, "Method '", methodName, "' of ", objectName(object), " cannot be overwritten. Derive e.g. a sub-class!", (char *) NULL); + } else { + result = TCL_OK; } } ObjectSystemsCheckSystemMethod(interp, methodName, GetObjectSystem(object));