summaryrefslogtreecommitdiffstats
path: root/generic/tclMathOp.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2006-12-08 20:48:08 (GMT)
committerdgp <dgp@users.sourceforge.net>2006-12-08 20:48:08 (GMT)
commit737023909817fcc30432c33881868b521a3661d9 (patch)
tree2ec0dbf630fbc773ffa1f75145aba1677f457a21 /generic/tclMathOp.c
parentc31a5d22b7398ccaa6b9d0e17e4865563253b0f5 (diff)
downloadtcl-737023909817fcc30432c33881868b521a3661d9.zip
tcl-737023909817fcc30432c33881868b521a3661d9.tar.gz
tcl-737023909817fcc30432c33881868b521a3661d9.tar.bz2
* generic/tclBasic.c: Another step down the path of re-using
* generic/tclCompExpr.c: TclExecuteByteCode to implement the TIP 174 * generic/tclCompile.h: commands instead of using a mass of code * generic/tclMathOp.c: duplication. Now all operator commands that * tests/mathop.test: demand exactly one operation are implemented via TclSingleOpCmd and a call to TEBC.
Diffstat (limited to 'generic/tclMathOp.c')
-rw-r--r--generic/tclMathOp.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/generic/tclMathOp.c b/generic/tclMathOp.c
index f146a39..0ef70a1 100644
--- a/generic/tclMathOp.c
+++ b/generic/tclMathOp.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclMathOp.c,v 1.6 2006/12/08 18:08:37 dgp Exp $
+ * RCS: @(#) $Id: tclMathOp.c,v 1.7 2006/12/08 20:48:09 dgp Exp $
*/
#include "tclInt.h"
@@ -1047,7 +1047,7 @@ CompareNumbers(
*
*----------------------------------------------------------------------
*/
-#if 0
+
int
TclInvertOpCmd(
ClientData clientData,
@@ -1108,7 +1108,6 @@ TclInvertOpCmd(
}
}
}
-#endif
/*
*----------------------------------------------------------------------