summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2005-04-15 02:38:27 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2005-04-15 02:38:27 (GMT)
commitf2ba23c5317d5946330c79c359b396664ede4bc9 (patch)
tree0e9c66a63a8fd53bedbe6c3580140f04ca87e91b
parentcbc0b3c930089c8d255b4ff129ee8ef971592b00 (diff)
downloadtcl-f2ba23c5317d5946330c79c359b396664ede4bc9.zip
tcl-f2ba23c5317d5946330c79c359b396664ede4bc9.tar.gz
tcl-f2ba23c5317d5946330c79c359b396664ede4bc9.tar.bz2
* generic/tclExecute.c: missing semicolons caused failure to
compile with TCL_COMPILE_DEBUG.
-rw-r--r--ChangeLog5
-rw-r--r--generic/tclExecute.c6
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 <msofer@users.sf.net>
+
+ * generic/tclExecute.c: missing semicolons caused failure to
+ compile with TCL_COMPILE_DEBUG.
+
2005-04-13 David Gravereaux <davygrvy@pobox.com>
* 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];