More fixes.

This commit is contained in:
Bruce Hill 2018-12-14 17:56:22 -08:00
parent b38d9e0062
commit 5b6095b805
2 changed files with 2 additions and 2 deletions

View File

@ -340,7 +340,7 @@ tree_to_nomsu = function(tree)
end
nomsu:add(target_nomsu)
nomsu:add(target_nomsu:is_multiline() and " \\\n..|" or "|")
nomsu:add(recurse(tree[2]))
nomsu:add(tree_to_nomsu(tree[2]))
return nomsu
elseif "EscapedNomsu" == _exp_0 then
nomsu = recurse(tree[1])

View File

@ -265,7 +265,7 @@ tree_to_nomsu = (tree)->
target_nomsu\parenthesize!
nomsu\add target_nomsu
nomsu\add(target_nomsu\is_multiline! and " \\\n..|" or "|")
nomsu\add recurse(tree[2])
nomsu\add tree_to_nomsu(tree[2])
return nomsu
when "EscapedNomsu"