aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard van Velzen <rvanvelzen1@gmail.com>2015-01-04 13:53:31 +0100
committerRichard van Velzen <rvanvelzen1@gmail.com>2015-01-04 13:53:31 +0100
commit66e6f0c3cb53c311655eb42d025a416c8bbef61a (patch)
treeea2dd7f3611715b4ff9abb75265a3053f4465995
parentf7447efa8ccfe73ba3792dc531505e56e6ced583 (diff)
parent39d8880f2cd17c9b96bf73a3bcd7c27a89cf919e (diff)
downloadtracifyjs-66e6f0c3cb53c311655eb42d025a416c8bbef61a.tar.gz
tracifyjs-66e6f0c3cb53c311655eb42d025a416c8bbef61a.zip
Merge pull request #592 from micschro/patch-1
Fix max_line_len not working for JSON files
-rw-r--r--lib/output.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/output.js b/lib/output.js
index 5a8f603c..7bca4dae 100644
--- a/lib/output.js
+++ b/lib/output.js
@@ -221,7 +221,7 @@ function OutputStream(options) {
var newline = options.beautify ? function() {
print("\n");
- } : noop;
+ } : maybe_newline;
var semicolon = options.beautify ? function() {
print(";");