From d07bb0a75a631782ba054cf0c4081d21771f0e18 Mon Sep 17 00:00:00 2001 From: Lee Spector Date: Fri, 29 Jan 2021 19:32:28 -0500 Subject: [PATCH] Specify opens for all exec instructions --- src/propeller/push/core.cljc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/propeller/push/core.cljc b/src/propeller/push/core.cljc index 2cba929..f9d23bd 100755 --- a/src/propeller/push/core.cljc +++ b/src/propeller/push/core.cljc @@ -6,4 +6,10 @@ ;; Number of blocks opened by instructions (default = 0) (def opens {:exec_dup 1 - :exec_if 2}) + :exec_if 2 + :exec_when 1 + :exec_while 1 + :exec_do_while 1 + :exec_k 2 + :exec_s 3 + :exec_y 1})