From ff3f7487a4a2320a91e26d0fdfe3746e270db72c Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Tue, 8 Jan 2019 20:05:36 -0500 Subject: [PATCH] Add splice special form to grammar. --- tools/tm_lang_gen.janet | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/tm_lang_gen.janet b/tools/tm_lang_gen.janet index a706be3e..d82ce129 100644 --- a/tools/tm_lang_gen.janet +++ b/tools/tm_lang_gen.janet @@ -353,7 +353,8 @@ "if" "quote" "quasiquote" - "unquote"]) + "unquote" + "splice"]) (def allsyms (array/concat @[] specials (all-bindings)))