diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2008-08-04 14:09:28 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2008-08-04 14:09:28 (GMT) |
commit | 9f1ea1f4ceab1ae51bae4e6db3ed9c65375ce8f5 (patch) | |
tree | 01368a1443efb5b17366f4e3d39b128635727902 /generic/tclProc.c | |
parent | 43e81520e0e2ad0155c836147ceff63c3c7a3855 (diff) | |
download | tcl-9f1ea1f4ceab1ae51bae4e6db3ed9c65375ce8f5.zip tcl-9f1ea1f4ceab1ae51bae4e6db3ed9c65375ce8f5.tar.gz tcl-9f1ea1f4ceab1ae51bae4e6db3ed9c65375ce8f5.tar.bz2 |
duh ... committed only the ChangeLog entry, not the rest
Diffstat (limited to 'generic/tclProc.c')
-rw-r--r-- | generic/tclProc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclProc.c b/generic/tclProc.c index 0cc9ae4..1fe9b39 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.154 2008/07/31 14:43:47 msofer Exp $ + * RCS: @(#) $Id: tclProc.c,v 1.155 2008/08/04 14:09:32 msofer Exp $ */ #include "tclInt.h" @@ -1772,7 +1772,8 @@ TclNRInterpProcCore( TclNRAddCallback(interp, InterpProcNR2, procNameObj, errorProc, NULL, NULL); - TclNRAddCallback(interp, NRRunBytecode, codePtr, NULL, NULL, NULL); + TclNRAddCallback(interp, NRCallTEBC, INT2PTR(TCL_NR_BC_TYPE), codePtr, + NULL, NULL); return TCL_OK; } |