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
|
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(" ")
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user