Changed clumping to only be different for "'", not other operators.
This commit is contained in:
parent
c36798f2ad
commit
63c14bdbc3
@ -61,7 +61,7 @@ tree_to_inline_nomsu = function(tree)
|
||||
if type(tree[i - 1]) == 'string' then
|
||||
clump_words = is_operator(bit) ~= is_operator(tree[i - 1])
|
||||
else
|
||||
clump_words = is_operator(bit)
|
||||
clump_words = bit == "'"
|
||||
end
|
||||
if i > 1 and not clump_words then
|
||||
nomsu:append(" ")
|
||||
|
@ -42,7 +42,7 @@ tree_to_inline_nomsu = (tree)->
|
||||
if type(bit) == "string"
|
||||
clump_words = if type(tree[i-1]) == 'string'
|
||||
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 bit
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user