Fixed 's clumping for stuff like (%foo's metatable)

This commit is contained in:
Bruce Hill 2018-11-09 17:48:35 -08:00
parent 6fa1cb23d1
commit b2cec10592
2 changed files with 9 additions and 2 deletions

View File

@ -57,7 +57,12 @@ tree_to_inline_nomsu = function(tree)
end end
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 = (type(tree[i - 1]) == 'string' and is_operator(bit) ~= is_operator(tree[i - 1])) local clump_words
if type(tree[i - 1]) then
clump_words = is_operator(bit) ~= is_operator(tree[i - 1])
else
clump_words = is_operator(bit)
end
if i > 1 and not clump_words then if i > 1 and not clump_words then
nomsu:append(" ") nomsu:append(" ")
end end

View File

@ -40,7 +40,9 @@ tree_to_inline_nomsu = (tree)->
for i,bit in ipairs tree for i,bit in ipairs tree
if type(bit) == "string" if type(bit) == "string"
clump_words = (type(tree[i-1]) == 'string' and is_operator(bit) != is_operator(tree[i-1])) clump_words = if type(tree[i-1]) == 'string'
is_operator(bit) != is_operator(tree[i-1])
else is_operator(bit)
nomsu\append " " if i > 1 and not clump_words nomsu\append " " if i > 1 and not clump_words
nomsu\append bit nomsu\append bit
else else