Index: generic/nsf.c =================================================================== diff -u -r74d126b541dc8d342bd39072028e4062b17aee09 -r55c89d7890cc910efd0909b70b074ebf896ce55f --- generic/nsf.c (.../nsf.c) (revision 74d126b541dc8d342bd39072028e4062b17aee09) +++ generic/nsf.c (.../nsf.c) (revision 55c89d7890cc910efd0909b70b074ebf896ce55f) @@ -24162,17 +24162,18 @@ cmd __profile_trace NsfProfileTraceStub { {-argName "-enable" -required 1 -nrargs 1 -type boolean} {-argName "-verbose" -required 0 -nrargs 1 -type boolean} + {-argName "-dontsave" -required 0 -nrargs 1 -type boolean} } */ -static int NsfProfileTraceStub(Tcl_Interp *interp, int withEnable, int withVerbose) +static int NsfProfileTraceStub(Tcl_Interp *interp, int withEnable, int withVerbose, int withDontsave) NSF_nonnull(1); static int -NsfProfileTraceStub(Tcl_Interp *interp, int withEnable, int withVerbose) { +NsfProfileTraceStub(Tcl_Interp *interp, int withEnable, int withVerbose, int withDontsave) { assert(interp != NULL); #if defined(NSF_PROFILE) - NsfProfileTrace(interp, withEnable, withVerbose); + NsfProfileTrace(interp, withEnable, withVerbose, withDontsave); #endif return TCL_OK; }