summaryrefslogtreecommitdiffstats
path: root/generic/tclProc.c
diff options
context:
space:
mode:
authormsofer <msofer@noemail.net>2010-09-27 19:42:36 (GMT)
committermsofer <msofer@noemail.net>2010-09-27 19:42:36 (GMT)
commitac7b7276e4e0e60d281a3b042530f8d1fc0016af (patch)
tree4d363e5df177abbfaf883365f97c35c5ba84a573 /generic/tclProc.c
parent9030d541c9dfc8b6017df1e41f84f37a68e11d95 (diff)
downloadtcl-ac7b7276e4e0e60d281a3b042530f8d1fc0016af.zip
tcl-ac7b7276e4e0e60d281a3b042530f8d1fc0016af.tar.gz
tcl-ac7b7276e4e0e60d281a3b042530f8d1fc0016af.tar.bz2
* generic/tclBasic.c: [Patch 3072080] (minus the itcl
* generic/tclCmdIL.c: update): a saner NRE. * generic/tclCompExpr.c: * generic/tclCompile.c: This makes TclNRExecuteByteCode * generic/tclCompile.h: (ex TEBC) to be a normal NRE * generic/tclExecute.c: citizen: it loses its special status. * generic/tclInt.decls: The logic flow within the BC engine is * generic/tclInt.h: simplified considerably. * generic/tclIntDecls.h: * generic/tclObj.c: * generic/tclProc.c: * generic/tclTest.c: FossilOrigin-Name: 56c0f34285323c689b17fa61b812db8da24cdf56
Diffstat (limited to 'generic/tclProc.c')
-rw-r--r--generic/tclProc.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/generic/tclProc.c b/generic/tclProc.c
index d1a90ad..315af88 100644
--- a/generic/tclProc.c
+++ b/generic/tclProc.c
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclProc.c,v 1.181 2010/08/22 18:53:26 nijtmans Exp $
+ * RCS: @(#) $Id: tclProc.c,v 1.182 2010/09/27 19:42:38 msofer Exp $
*/
#include "tclInt.h"
@@ -1811,9 +1811,7 @@ TclNRInterpProcCore(
TclNRAddCallback(interp, InterpProcNR2, procNameObj, errorProc,
NULL, NULL);
- TclNRAddCallback(interp, NRCallTEBC, INT2PTR(TCL_NR_BC_TYPE), codePtr,
- NULL, NULL);
- return TCL_OK;
+ return TclNRExecuteByteCode(interp, codePtr);
}
static int