Merge pull request #592 from micschro/patch-1

Fix max_line_len not working for JSON files
This commit is contained in:
Richard van Velzen
2015-01-04 13:53:31 +01:00

View File

@@ -221,7 +221,7 @@ function OutputStream(options) {
var newline = options.beautify ? function() {
print("\n");
} : noop;
} : maybe_newline;
var semicolon = options.beautify ? function() {
print(";");