summary refs log tree commit diff
path: root/lisc/parse.c
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-02-22 13:55:18 -0500
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-02-22 13:55:18 -0500
commite400e177b60cfe3da56c12aca0a9321c2acabcfe (patch)
treeaace444836b5f15b974a7fef75d4c76bc31fd4f6 /lisc/parse.c
parent4be29d40305917d3c4bdb9e9c795ea68e415c748 (diff)
downloadroux-e400e177b60cfe3da56c12aca0a9321c2acabcfe.tar.gz
use isstore() in parser
Diffstat (limited to 'lisc/parse.c')
-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;