diff options
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 0741813..ed2d2d1 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclBasic.c,v 1.285 2007/11/26 19:11:11 msofer Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.286 2007/11/28 00:26:16 msofer Exp $ */ #include "tclInt.h" @@ -609,6 +609,11 @@ Tcl_CreateInterp(void) iPtr->pendingObjDataPtr = NULL; iPtr->asyncReadyPtr = TclGetAsyncReadyPtr(); + /* + * Insure that the stack checking mechanism for this interp is + * initialized. + */ + GetCStackParams(iPtr); /* @@ -831,13 +836,6 @@ Tcl_CreateInterp(void) Tcl_Panic(Tcl_GetString(Tcl_GetObjResult(interp))); } - /* - * Insure that the stack checking mechanism for this interp is - * initialized. - */ - - TclInterpReady(interp); - return interp; } |