summaryrefslogtreecommitdiffstats
path: root/generic/tclExecute.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2014-11-24 03:11:23 (GMT)
committerdgp <dgp@users.sourceforge.net>2014-11-24 03:11:23 (GMT)
commit52bcb866e5ca12af686bac155a8922480f2b7117 (patch)
tree0a031209db0e175aa2fa2752a9a14f7026ab18c5 /generic/tclExecute.c
parentfa8d5668aa957ec61ee48b08d44adeb788157a36 (diff)
parent7f5ddf43eee64cc31303c2659b011bceba8ff06c (diff)
downloadtcl-52bcb866e5ca12af686bac155a8922480f2b7117.zip
tcl-52bcb866e5ca12af686bac155a8922480f2b7117.tar.gz
tcl-52bcb866e5ca12af686bac155a8922480f2b7117.tar.bz2
merge trunk
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r--generic/tclExecute.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index 2e03ab4..337a75f 100644
--- a/generic/tclExecute.c
+++ b/generic/tclExecute.c
@@ -81,9 +81,7 @@ int tclTraceExec = 0;
static const char *const operatorStrings[] = {
"||", "&&", "|", "^", "&", "==", "!=", "<", ">", "<=", ">=", "<<", ">>",
- "+", "-", "*", "/", "%", "+", "-", "~", "!",
- "BUILTIN FUNCTION", "FUNCTION",
- "", "", "", "", "", "", "", "", "eq", "ne"
+ "+", "-", "*", "/", "%", "+", "-", "~", "!"
};
/*
@@ -9830,7 +9828,7 @@ IllegalExprOperandType(
if (opcode == INST_EXPON) {
operator = "**";
- } else if (opcode <= INST_STR_NEQ) {
+ } else if (opcode <= INST_LNOT) {
operator = operatorStrings[opcode - INST_LOR];
}