Fixed 's
clumping for stuff like (%foo's metatable)
This commit is contained in:
parent
6fa1cb23d1
commit
b2cec10592
@ -57,7 +57,12 @@ tree_to_inline_nomsu = function(tree)
|
||||
end
|
||||
for i, bit in ipairs(tree) do
|
||||
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
|
||||
nomsu:append(" ")
|
||||
end
|
||||
|
@ -40,7 +40,9 @@ tree_to_inline_nomsu = (tree)->
|
||||
|
||||
for i,bit in ipairs tree
|
||||
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 bit
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user