From f2ba23c5317d5946330c79c359b396664ede4bc9 Mon Sep 17 00:00:00 2001 From: Miguel Sofer Date: Fri, 15 Apr 2005 02:38:27 +0000 Subject: * generic/tclExecute.c: missing semicolons caused failure to compile with TCL_COMPILE_DEBUG. --- ChangeLog | 5 +++++ generic/tclExecute.c | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5ef991b..f345148 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-04-15 Miguel Sofer + + * generic/tclExecute.c: missing semicolons caused failure to + compile with TCL_COMPILE_DEBUG. + 2005-04-13 David Gravereaux * generic/tclIO.c (Tcl_SetChannelBufferSize): Lowest size limit diff --git a/generic/tclExecute.c b/generic/tclExecute.c index fcb1322..8208752 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.181 2005/04/09 21:14:22 msofer Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.182 2005/04/15 02:38:39 msofer Exp $ */ #include "tclInt.h" @@ -4323,7 +4323,7 @@ TclExecuteByteCode(interp, codePtr) */ if ((tPtr == &tclIntType) || (tPtr == &tclBooleanType)) { i = valuePtr->internalRep.longValue; - TclNewLongObj(objResultPtr, -i) + TclNewLongObj(objResultPtr, -i); TRACE_WITH_OBJ(("%ld => ", i), objResultPtr); } else if (tPtr == &tclWideIntType) { TclGetWide(w,valuePtr); @@ -4363,7 +4363,7 @@ TclExecuteByteCode(interp, codePtr) i = (w == W0); TRACE_WITH_OBJ((LLD" => ", w), objResultPtr); } else { - i = (valuePtr->internalRep.doubleValue == 0.0) + i = (valuePtr->internalRep.doubleValue == 0.0); TRACE_WITH_OBJ(("%.6g => ", d), objResultPtr); } objResultPtr = eePtr->constants[i]; -- cgit v0.12