From 98e68a5cb435da8a83f4ec3c17f19b8393f362dc Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Mon, 11 Mar 2019 00:58:26 -0400 Subject: [PATCH] Update special form lists to include break. --- tools/highlight.janet | 1 + tools/tm_lang_gen.janet | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/highlight.janet b/tools/highlight.janet index f353dab8..95380da9 100644 --- a/tools/highlight.janet +++ b/tools/highlight.janet @@ -13,6 +13,7 @@ 'def true 'splice true 'set true + 'break true 'unquote true 'quasiquote true 'quote true diff --git a/tools/tm_lang_gen.janet b/tools/tm_lang_gen.janet index 37d8a64e..3f87392c 100644 --- a/tools/tm_lang_gen.janet +++ b/tools/tm_lang_gen.janet @@ -344,7 +344,8 @@ # Now we generate the bindings in the language. (def- specials - @["def" + @["break" + "def" "do" "var" "set"