diff options
| author | Miguel Sofer <miguel.sofer@gmail.com> | 2008-08-03 17:33:10 (GMT) |
|---|---|---|
| committer | Miguel Sofer <miguel.sofer@gmail.com> | 2008-08-03 17:33:10 (GMT) |
| commit | 7fa164aa0896197931b18bc08bacfa0841226306 (patch) | |
| tree | afb13d0a8600f288efd20fab3dfb00080fedb57c /generic/tclInterp.c | |
| parent | 7396084821eb56e0508bd7c1a85e5dc860eee71d (diff) | |
| download | tcl-7fa164aa0896197931b18bc08bacfa0841226306.zip tcl-7fa164aa0896197931b18bc08bacfa0841226306.tar.gz tcl-7fa164aa0896197931b18bc08bacfa0841226306.tar.bz2 | |
* generic/tclBasic.c: new unsupported command atProcExit
* generic/tclCompile.h: that shares the implementation with
* generic/tclExecute.c: tailcall. Fixed a segfault in
* generic/tclInt.h: tailcalls. Tests added.
* generic/tclInterp.c:
* generic/tclNamesp.c:
* tests/unsupported.test:
Diffstat (limited to 'generic/tclInterp.c')
| -rw-r--r-- | generic/tclInterp.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/generic/tclInterp.c b/generic/tclInterp.c index daa705b..4f15134 100644 --- a/generic/tclInterp.c +++ b/generic/tclInterp.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: tclInterp.c,v 1.95 2008/07/31 14:43:46 msofer Exp $ + * RCS: @(#) $Id: tclInterp.c,v 1.96 2008/08/03 17:33:12 msofer Exp $ */ #include "tclInt.h" @@ -1762,7 +1762,6 @@ AliasNRCmd( Tcl_Obj *listPtr; List *listRep; int flags = TCL_EVAL_INVOKE; - int result; /* * Append the arguments to the command prefix and invoke the command in @@ -1808,9 +1807,7 @@ AliasNRCmd( if (isRootEnsemble) { TclNRAddCallback(interp, TclClearRootEnsemble, NULL, NULL, NULL, NULL); } - result = Tcl_NREvalObj(interp, listPtr, flags); - TclNRClearCommandFlag(interp); - return result; + return Tcl_NREvalObj(interp, listPtr, flags); } static int |
