diff options
Diffstat (limited to 'nomsu_compiler.moon')
| -rw-r--r-- | nomsu_compiler.moon | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nomsu_compiler.moon b/nomsu_compiler.moon index 5790188..2856ff2 100644 --- a/nomsu_compiler.moon +++ b/nomsu_compiler.moon @@ -698,7 +698,7 @@ with NomsuCompiler when "Block" nomsu = NomsuCode(tree.source, pop_comments(tree.source.start)) for i, line in ipairs tree - nomsu\append pop_comments(line.source.start, '\n') + nomsu\append pop_comments(line.source.start, i > 1 and '\n' or '') line_nomsu = recurse(line) nomsu\append line_nomsu if i < #tree |
