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 | 245ab4ae255929317069b92446f66b83c901b8f8 (patch) | |
tree | afb13d0a8600f288efd20fab3dfb00080fedb57c /generic/tclInterp.c | |
parent | 4e05e9902f3b5f40de10d672ed0c5e1a106dc8ae (diff) | |
download | tcl-245ab4ae255929317069b92446f66b83c901b8f8.zip tcl-245ab4ae255929317069b92446f66b83c901b8f8.tar.gz tcl-245ab4ae255929317069b92446f66b83c901b8f8.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 |