summary refs log tree commit diff
path: root/lisc
diff options
context:
space:
mode:
Diffstat (limited to 'lisc')
-rw-r--r--lisc/parse.c2
1 files changed, 1 insertions, 1 deletions
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;