diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2001-11-20 21:17:38 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2001-11-20 21:17:38 (GMT) |
commit | 506f565ba428b0401653d431867ed8f2c2fa3a1c (patch) | |
tree | f258d8ab9f0c2e17c6287433a7b754ffbdb80170 /generic/tclExecute.c | |
parent | 6a486a8037e4f19601182dd4ff17bf7ba9d7ce38 (diff) | |
download | tcl-506f565ba428b0401653d431867ed8f2c2fa3a1c.zip tcl-506f565ba428b0401653d431867ed8f2c2fa3a1c.tar.gz tcl-506f565ba428b0401653d431867ed8f2c2fa3a1c.tar.bz2 |
code reorganisation and factorisation.
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r-- | generic/tclExecute.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c index cb3b5cc..8ca2772 100644 --- a/generic/tclExecute.c +++ b/generic/tclExecute.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclExecute.c,v 1.40 2001/11/20 19:45:19 msofer Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.41 2001/11/20 21:17:39 msofer Exp $ */ #include "tclInt.h" @@ -792,6 +792,7 @@ TclExecuteByteCode(interp, codePtr) * Finally, let TclEvalObjvInternal handle the command. */ + Tcl_ResetResult(interp); DECACHE_STACK_INFO(); result = TclEvalObjvInternal(interp, objc, objv, bytes, length, 0); CACHE_STACK_INFO(); |