Fixed comment clumping issue.

This commit is contained in:
Bruce Hill 2018-11-09 17:36:29 -08:00
parent 083ed530bd
commit b236ad88a9
2 changed files with 2 additions and 2 deletions

View File

@ -239,7 +239,7 @@ tree_to_nomsu = function(tree)
return false
end
end
return not recurse(prev_line):is_multiline()
return not tree_to_nomsu(prev_line):is_multiline()
end
for chunk_no, chunk in ipairs(tree) do
if chunk_no > 1 then

View File

@ -179,7 +179,7 @@ tree_to_nomsu = (tree)->
if prev_line.stub == "use" then return line.stub == "use"
if prev_line.stub == "test" then return true
if line.stub == "test" then return false
return not recurse(prev_line)\is_multiline!
return not tree_to_nomsu(prev_line)\is_multiline!
for chunk_no, chunk in ipairs tree
nomsu\append "\n\n#{("~")\rep(80)}\n\n" if chunk_no > 1