summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2006-12-11 18:54:10 (GMT)
committerdgp <dgp@users.sourceforge.net>2006-12-11 18:54:10 (GMT)
commitd9089b0f76f5224ffc6d7f52e0cd6d8306820853 (patch)
tree62f996db7293dd70be80d53ca9a9a586181631a0 /generic/tclBasic.c
parent4a3621293e6822c41b4e6455bb06429a032c6eae (diff)
downloadtcl-d9089b0f76f5224ffc6d7f52e0cd6d8306820853.zip
tcl-d9089b0f76f5224ffc6d7f52e0cd6d8306820853.tar.gz
tcl-d9089b0f76f5224ffc6d7f52e0cd6d8306820853.tar.bz2
* generic/tclBasic.c: Another step with all sorting operator commands
* generic/tclCompExpr.c: now routing through TEBC via * generic/tclCompile.h: TclSortingOpCmd().
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r--generic/tclBasic.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index 8c43737..9f21b3b 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -13,7 +13,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclBasic.c,v 1.228 2006/12/08 20:48:08 dgp Exp $
+ * RCS: @(#) $Id: tclBasic.c,v 1.229 2006/12/11 18:54:10 dgp Exp $
*/
#include "tclInt.h"
@@ -298,12 +298,12 @@ static const OpCmdInfo mathOpCmds[] = {
{ "ni", TclSingleOpCmd, TclCompileNiOpCmd, 2, "value list"},
{ "-", TclMinusOpCmd, TclCompileMinusOpCmd, 0, NULL },
{ "/", TclDivOpCmd, TclCompileDivOpCmd, 0, NULL },
- { "<", TclLessOpCmd, TclCompileLessOpCmd, 0, NULL },
- { "<=", TclLeqOpCmd, TclCompileLeqOpCmd, 0, NULL },
- { ">", TclGreaterOpCmd, TclCompileGreaterOpCmd, 0, NULL },
- { ">=", TclGeqOpCmd, TclCompileGeqOpCmd, 0, NULL },
- { "==", TclEqOpCmd, TclCompileEqOpCmd, 0, NULL },
- { "eq", TclStreqOpCmd, TclCompileStreqOpCmd, 0, NULL },
+ { "<", TclSortingOpCmd, TclCompileLessOpCmd, 0, NULL },
+ { "<=", TclSortingOpCmd, TclCompileLeqOpCmd, 0, NULL },
+ { ">", TclSortingOpCmd, TclCompileGreaterOpCmd, 0, NULL },
+ { ">=", TclSortingOpCmd, TclCompileGeqOpCmd, 0, NULL },
+ { "==", TclSortingOpCmd, TclCompileEqOpCmd, 0, NULL },
+ { "eq", TclSortingOpCmd, TclCompileStreqOpCmd, 0, NULL },
{ NULL, NULL, NULL, 0, NULL }
};