summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
authorPeter Mikkelsen <peter@pmikkelsen.com>2021-07-20 22:28:46 +0000
committerPeter Mikkelsen <peter@pmikkelsen.com>2021-07-20 22:28:46 +0000
commit0c22d3d73005e7b956742bd5fc75f183b8784989 (patch)
tree9ba0e3b6a58c4a8d80de3ee6c229b3c8b1a69c31 /misc.c
parent42be27517c8057733afe2d31b8bf7b98ee6f6578 (diff)
Add a bit of a hack to the parser so it can parse (a) op arg when a is an operator
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/misc.c b/misc.c
index fd74a82..f25c583 100644
--- a/misc.c
+++ b/misc.c
@@ -53,6 +53,7 @@ mkterm(int tag)
t->children = nil;
t->text = nil;
t->clausenr = 0;
+ t->inparens = 0;
return t;
}