diff options
author | Mihai Bazon <mihai.bazon@gmail.com> | 2015-05-04 17:55:42 +0300 |
---|---|---|
committer | Mihai Bazon <mihai.bazon@gmail.com> | 2015-05-04 17:55:42 +0300 |
commit | 4aed0830e5c1e5dabf05c0db4366c965fe952ced (patch) | |
tree | e4325178a130285db7ff69f4bcfb74d6493e3b3b | |
parent | d2dda34b2a8de310f26a26e58ed28275ba5ecc7f (diff) | |
download | tracifyjs-4aed0830e5c1e5dabf05c0db4366c965fe952ced.tar.gz tracifyjs-4aed0830e5c1e5dabf05c0db4366c965fe952ced.zip |
Fix blank lines in the output.
The issue was more obvious when max_line_len has a small value, rather than
the default 32K characters. A blank line showed up after most statements.
-rw-r--r-- | lib/output.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/output.js b/lib/output.js index 135636b9..1d67b1b9 100644 --- a/lib/output.js +++ b/lib/output.js @@ -176,7 +176,6 @@ function OutputStream(options) { might_need_space = false; } might_need_semicolon = false; - maybe_newline(); } if (!options.beautify && options.preserve_line && stack[stack.length - 1]) { |