diff options
author | escoffon <escoffon> | 1998-10-05 22:32:09 (GMT) |
---|---|---|
committer | escoffon <escoffon> | 1998-10-05 22:32:09 (GMT) |
commit | 7a0266fc2a385695a20d43579b3c6951495a3b21 (patch) | |
tree | f25db388c40788f11cbe13b90d87726976d7607e /win/tclAppInit.c | |
parent | 96be4fa0ab6cb9a0ef8b91883cb51e120e857cde (diff) | |
download | tcl-7a0266fc2a385695a20d43579b3c6951495a3b21.zip tcl-7a0266fc2a385695a20d43579b3c6951495a3b21.tar.gz tcl-7a0266fc2a385695a20d43579b3c6951495a3b21.tar.bz2 |
Added a new Tcl object called "procbody"; this object's internal
representation contains both a Proc struct and its associated ByteCode.
Updated tclProc.c::TclCreateProc to take procbody instances as the body
argument, for future support of compiler extensions.
Added the "procbodytest" package for testing all this stuff.
Diffstat (limited to 'win/tclAppInit.c')
-rw-r--r-- | win/tclAppInit.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/win/tclAppInit.c b/win/tclAppInit.c index c679039..3c31bb2 100644 --- a/win/tclAppInit.c +++ b/win/tclAppInit.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclAppInit.c,v 1.2 1998/09/14 18:40:19 stanton Exp $ + * RCS: @(#) $Id: tclAppInit.c,v 1.3 1998/10/05 22:32:12 escoffon Exp $ */ #include "tcl.h" @@ -18,6 +18,8 @@ #include <locale.h> #ifdef TCL_TEST +EXTERN int Procbodytest_Init _ANSI_ARGS_((Tcl_Interp *interp)); +EXTERN int Procbodytest_SafeInit _ANSI_ARGS_((Tcl_Interp *interp)); EXTERN int Tcltest_Init _ANSI_ARGS_((Tcl_Interp *interp)); EXTERN int TclObjTest_Init _ANSI_ARGS_((Tcl_Interp *interp)); #endif /* TCL_TEST */ @@ -113,6 +115,11 @@ Tcl_AppInit(interp) if (TclObjTest_Init(interp) == TCL_ERROR) { return TCL_ERROR; } + if (Procbodytest_Init(interp) == TCL_ERROR) { + return TCL_ERROR; + } + Tcl_StaticPackage(interp, "procbodytest", Procbodytest_Init, + Procbodytest_SafeInit); #endif /* TCL_TEST */ /* |