summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--generic/tclExecute.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index eee53b0..1af9d66 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-09-03 Jeff Hobbs <jeffh@ActiveState.com>
+
+ * generic/tclExecute.c (TclExecuteByteCode): fixed missing comma
+ in debug macro.
+
2001-09-03 Donal K. Fellows <fellowsd@cs.man.ac.uk>
* doc/ExprLongObj.3: Fixed error in documentation of argument type
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index 549e908..c420e95 100644
--- a/generic/tclExecute.c
+++ b/generic/tclExecute.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: tclExecute.c,v 1.28 2001/09/01 00:51:31 hobbs Exp $
+ * RCS: @(#) $Id: tclExecute.c,v 1.29 2001/09/03 17:34:16 hobbs Exp $
*/
#include "tclInt.h"
@@ -1430,7 +1430,7 @@ TclExecuteByteCode(interp, codePtr)
}
PUSH_OBJECT(valuePtr);
- TRACE_WITH_OBJ(("%u => " opnd), valuePtr);
+ TRACE_WITH_OBJ(("%u => ", opnd), valuePtr);
ADJUST_PC(5);
/*