From 125b5464dc405059e30b43b491ebe16fcbeba393 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 9 Nov 2014 16:12:47 -0500 Subject: [PATCH] Eval - Do not mark the '(' and ')' operators as binary. I don't know what they are, but they are not binary. --- src/Eval.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Eval.cpp b/src/Eval.cpp index fa054649c..884fd34cd 100644 --- a/src/Eval.cpp +++ b/src/Eval.cpp @@ -83,8 +83,8 @@ static struct { "or", 4, 'b', 'l' }, // Disjunction { "xor", 3, 'b', 'l' }, // Disjunction - { "(", 0, 'b', 'l' }, // Precedence start - { ")", 0, 'b', 'l' }, // Precedence end + { "(", 0, '_', 'l' }, // Precedence start + { ")", 0, '_', 'l' }, // Precedence end }; #define NUM_OPERATORS (sizeof (operators) / sizeof (operators[0]))