aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorCalvin Rose <calsrose@gmail.com>2019-03-11 00:58:26 -0400
committerCalvin Rose <calsrose@gmail.com>2019-03-11 00:58:26 -0400
commit98e68a5cb435da8a83f4ec3c17f19b8393f362dc (patch)
tree9cee2eabe620d1c681ac91bb6c6166c5a5a3812c /tools
parentUpdate web build. (diff)
Update special form lists to include break.
Diffstat (limited to 'tools')
-rw-r--r--tools/highlight.janet1
-rw-r--r--tools/tm_lang_gen.janet3
2 files changed, 3 insertions, 1 deletions
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"