From e233912a34a8c8a96ce9e08b62537891ea102aa5 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Tue, 31 Mar 2015 15:08:44 -0700 Subject: [PATCH] Fix #114 --- src/dfmt/formatter.d | 2 +- tests/allman/issue0114.d.ref | 5 +++++ tests/issue0114.d | 5 +++++ tests/otbs/issue0114.d.ref | 4 ++++ 4 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 tests/allman/issue0114.d.ref create mode 100644 tests/issue0114.d create mode 100644 tests/otbs/issue0114.d.ref diff --git a/src/dfmt/formatter.d b/src/dfmt/formatter.d index de203d2..91b0caf 100644 --- a/src/dfmt/formatter.d +++ b/src/dfmt/formatter.d @@ -295,7 +295,7 @@ private: { break; } - else if ((t == tok!"import" && !currentIs(tok!"import"))) + else if ((t == tok!"import" && !currentIs(tok!"import") && !currentIs(tok!"}"))) { write("\n"); currentLineLength = 0; diff --git a/tests/allman/issue0114.d.ref b/tests/allman/issue0114.d.ref new file mode 100644 index 0000000..3a516e8 --- /dev/null +++ b/tests/allman/issue0114.d.ref @@ -0,0 +1,5 @@ +private +{ + import std.process; + import std.c.windows.windows; +} diff --git a/tests/issue0114.d b/tests/issue0114.d new file mode 100644 index 0000000..adc81eb --- /dev/null +++ b/tests/issue0114.d @@ -0,0 +1,5 @@ +private +{ + import std.process; + import std.c.windows.windows; +} diff --git a/tests/otbs/issue0114.d.ref b/tests/otbs/issue0114.d.ref new file mode 100644 index 0000000..ae34f97 --- /dev/null +++ b/tests/otbs/issue0114.d.ref @@ -0,0 +1,4 @@ +private { + import std.process; + import std.c.windows.windows; +}