mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-20 04:13:07 +02:00
Eval
- Do not mark the '(' and ')' operators as binary. I don't know what they are, but they are not binary.
This commit is contained in:
parent
d8d517706b
commit
125b5464dc
1 changed files with 2 additions and 2 deletions
|
@ -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]))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue