Recompile

This commit is contained in:
Bruce Hill 2018-11-09 17:48:56 -08:00
parent b2cec10592
commit c36798f2ad

View File

@ -58,7 +58,7 @@ tree_to_inline_nomsu = function(tree)
for i, bit in ipairs(tree) do for i, bit in ipairs(tree) do
if type(bit) == "string" then if type(bit) == "string" then
local clump_words local clump_words
if type(tree[i - 1]) then if type(tree[i - 1]) == 'string' then
clump_words = is_operator(bit) ~= is_operator(tree[i - 1]) clump_words = is_operator(bit) ~= is_operator(tree[i - 1])
else else
clump_words = is_operator(bit) clump_words = is_operator(bit)