diff --git a/src/dfmt/formatter.d b/src/dfmt/formatter.d index aa03f3f..a20cdc7 100644 --- a/src/dfmt/formatter.d +++ b/src/dfmt/formatter.d @@ -1158,7 +1158,7 @@ private: } else if (!peekIs(tok!"}") && (linebreakHints.canFind(index) || (linebreakHints.length == 0 - && currentLineLength > config.dfmt_soft_max_line_length))) + && currentLineLength > config.max_line_length))) { pushWrapIndent(); writeToken(); diff --git a/tests/allman/guessnumber.d.ref b/tests/allman/guessnumber.d.ref index 7855ed9..75179c5 100644 --- a/tests/allman/guessnumber.d.ref +++ b/tests/allman/guessnumber.d.ref @@ -3,8 +3,7 @@ import std.stdio, std.random, std.typecons, std.conv, std.string, std.range; void main() { immutable interval = tuple(1, 100); - writefln("Guess my target number that is between " ~ "%d and %d (inclusive).\n", - interval[]); + writefln("Guess my target number that is between " ~ "%d and %d (inclusive).\n", interval[]); immutable target = uniform!"[]"(interval[]); foreach (immutable i; sequence!q{n}) diff --git a/tests/allman/issue0047.d.ref b/tests/allman/issue0047.d.ref index 9c257e5..ae136a3 100644 --- a/tests/allman/issue0047.d.ref +++ b/tests/allman/issue0047.d.ref @@ -16,8 +16,7 @@ unittest } void doStuff(const Token[] tokens, ref const State current, - const FormatterConfig* formatterConfig, int currentLineLength, int indentLevel, - int depth) + const FormatterConfig* formatterConfig, int currentLineLength, int indentLevel, int depth) { return; } diff --git a/tests/otbs/guessnumber.d.ref b/tests/otbs/guessnumber.d.ref index 7cc250d..5ece444 100644 --- a/tests/otbs/guessnumber.d.ref +++ b/tests/otbs/guessnumber.d.ref @@ -2,8 +2,7 @@ import std.stdio, std.random, std.typecons, std.conv, std.string, std.range; void main() { immutable interval = tuple(1, 100); - writefln("Guess my target number that is between " ~ "%d and %d (inclusive).\n", - interval[]); + writefln("Guess my target number that is between " ~ "%d and %d (inclusive).\n", interval[]); immutable target = uniform!"[]"(interval[]); foreach (immutable i; sequence!q{n}) { diff --git a/tests/otbs/issue0047.d.ref b/tests/otbs/issue0047.d.ref index d23d7fd..3561956 100644 --- a/tests/otbs/issue0047.d.ref +++ b/tests/otbs/issue0047.d.ref @@ -15,8 +15,7 @@ unittest { } void doStuff(const Token[] tokens, ref const State current, - const FormatterConfig* formatterConfig, int currentLineLength, int indentLevel, - int depth) { + const FormatterConfig* formatterConfig, int currentLineLength, int indentLevel, int depth) { return; }