From 099a957e6c0abc92cf7e0e1cd08532f8d0ffcc57 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Sun, 29 Dec 2019 16:44:53 -0500 Subject: [PATCH] Update macex1 to properly handle break Things mostly worked fine, but technically break should be handled as a special form not a function call. --- src/boot/boot.janet | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/boot/boot.janet b/src/boot/boot.janet index fc75c6d6..17cf4c3c 100644 --- a/src/boot/boot.janet +++ b/src/boot/boot.janet @@ -1520,7 +1520,8 @@ 'quote identity 'quasiquote expandqq 'var expanddef - 'while expandall}) + 'while expandall + 'break expandall}) (defn dotup [t] (def h (in t 0))