Changed clumping to only be different for "'", not other operators.

This commit is contained in:
Bruce Hill 2018-11-09 17:50:00 -08:00
parent c36798f2ad
commit 63c14bdbc3
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -42,7 +42,7 @@ tree_to_inline_nomsu = (tree)->
if type(bit) == "string" if type(bit) == "string"
clump_words = if type(tree[i-1]) == 'string' clump_words = if type(tree[i-1]) == 'string'
is_operator(bit) != is_operator(tree[i-1]) is_operator(bit) != is_operator(tree[i-1])
else is_operator(bit) else 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