summaryrefslogtreecommitdiff
path: root/src/texec/eval.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/texec/eval.go')
-rw-r--r--src/texec/eval.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/texec/eval.go b/src/texec/eval.go
index f28cf9c..33f838e 100644
--- a/src/texec/eval.go
+++ b/src/texec/eval.go
@@ -994,7 +994,7 @@ func evalValue(v tparse.Node, ctx *VarMap) *TVariable {
case "==":
out.Type = tBool
out.Data = a.Data == b.Data
- case "!=":
+ case "!==":
out.Type = tBool
out.Data = a.Data != b.Data
case ">":