From e400e177b60cfe3da56c12aca0a9321c2acabcfe Mon Sep 17 00:00:00 2001 From: Quentin Carbonneaux Date: Mon, 22 Feb 2016 13:55:18 -0500 Subject: [PATCH] use isstore() in parser --- lisc/parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisc/parse.c b/lisc/parse.c index 96e70b6..1f2e557 100644 --- a/lisc/parse.c +++ b/lisc/parse.c @@ -478,7 +478,7 @@ parseline(PState ps) err("label or } expected"); switch (t) { default: - if (OStored <= t && t <= OStoreb) { + if (isstore(t)) { /* operations without result */ r = R; k = 0;