diff options
author | hobbs <hobbs> | 2001-09-03 17:34:16 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2001-09-03 17:34:16 (GMT) |
commit | 3a6e32d81ecc3bd4de3c17e9777c1d1901feddca (patch) | |
tree | cc719b19f12da8ceafdacb5fa07c0e44707524aa /generic/tclExecute.c | |
parent | 5e4c825e430b217765b90433272022c2ab3a8e6e (diff) | |
download | tcl-3a6e32d81ecc3bd4de3c17e9777c1d1901feddca.zip tcl-3a6e32d81ecc3bd4de3c17e9777c1d1901feddca.tar.gz tcl-3a6e32d81ecc3bd4de3c17e9777c1d1901feddca.tar.bz2 |
* generic/tclExecute.c (TclExecuteByteCode): fixed missing comma
in debug macro.
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r-- | generic/tclExecute.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); /* |