diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | generic/tclExecute.c | 8 |
2 files changed, 14 insertions, 1 deletions
@@ -1,3 +1,10 @@ +2002-07-24 Miguel Sofer <msofer@users.sourceforge.net> + + * generic/tclExecute.c: restoring the tcl_traceCompile + functionality while I repair tcl_traceExec. The core now compiles + and runs also under TCL_COMPILE_DEBUG, but execution in the + bytecode engine can still not be traced. + 2002-07-24 Daniel Steffen <das@users.sourceforge.net> * unix/Makefile.in: diff --git a/generic/tclExecute.c b/generic/tclExecute.c index c2e467e..efdcdbb 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.81 2002/07/22 10:04:17 dkf Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.82 2002/07/24 15:40:42 msofer Exp $ */ #include "tclInt.h" @@ -81,6 +81,12 @@ TCL_DECLARE_MUTEX(execMutex) */ int tclTraceExec = 0; + +/* + * Execution tracing temporarily disabled: WORK IN PROGRESS. + */ +#undef TCL_COMPILE_DEBUG + #endif /* |