diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2008-09-10 13:23:47 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2008-09-10 13:23:47 (GMT) |
commit | b2d9ed24c8428b9c2230515bf13aa76dcfdb607f (patch) | |
tree | 9ae25b29e219c9f6bc5be5c46c47d1f560762124 /generic/tclBasic.c | |
parent | eb97dfe76d6d46cf1b3c040b8a907305e5300afe (diff) | |
download | tcl-b2d9ed24c8428b9c2230515bf13aa76dcfdb607f.zip tcl-b2d9ed24c8428b9c2230515bf13aa76dcfdb607f.tar.gz tcl-b2d9ed24c8428b9c2230515bf13aa76dcfdb607f.tar.bz2 |
* tests/nre.test: add missing constraints; enable test of foreach
recursion.
* generic/tclBasic.c:
* generic/tclCompile.h:
* generic/tclExecute.c (INST_EVAL_STK): fix for [Bug 2102930],
wrong numLevels when evaling a canonical list.
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 68700c8..1f80d43 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -16,7 +16,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.365 2008/08/26 22:37:02 msofer Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.366 2008/09/10 13:24:00 msofer Exp $ */ #include "tclInt.h" @@ -134,7 +134,6 @@ static Tcl_NRPostProc TEOV_Error; static Tcl_NRPostProc TEOEx_ListCallback; static Tcl_NRPostProc TEOEx_ByteCodeCallback; -static Tcl_NRPostProc NRCommand; static Tcl_NRPostProc NRRunObjProc; static Tcl_NRPostProc AtProcExitCleanup; @@ -4228,7 +4227,7 @@ TclNRRunCallbacks( return result; } -static int +int NRCommand( ClientData data[], Tcl_Interp *interp, |