diff options
author | dgp <dgp@users.sourceforge.net> | 2008-07-23 04:08:00 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-07-23 04:08:00 (GMT) |
commit | 60cf559044682964bf4e53b529e793086cb394a6 (patch) | |
tree | abbdd42fe3619f2d5a417933d7f5e21c2c297c9a /generic | |
parent | d575f7b26ed9da3fcdfae2a232d41095d04d80e2 (diff) | |
download | tcl-60cf559044682964bf4e53b529e793086cb394a6.zip tcl-60cf559044682964bf4e53b529e793086cb394a6.tar.gz tcl-60cf559044682964bf4e53b529e793086cb394a6.tar.bz2 |
Fixed the failure to link in the default (non-TCL_TIP280) build.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclExecute.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c index 7d0eb11..657ac80 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.94.2.26 2008/07/22 21:40:31 andreas_kupries Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.94.2.27 2008/07/23 04:08:00 dgp Exp $ */ #include "tclInt.h" @@ -4517,7 +4517,9 @@ TclExecuteByteCode(interp, codePtr) } eePtr->stackTop = initStackTop; +#ifdef TCL_TIP280 TclArgumentBCRelease((Tcl_Interp*) iPtr,codePtr); +#endif return result; #undef STATIC_CATCH_STACK_SIZE |