No spaces-only lines after imports

Fixes tests/higherorder.d
This commit is contained in:
Andreas Zwinkau 2015-01-15 22:55:56 +01:00
parent 2278a4c16b
commit 6538abd177
1 changed files with 4 additions and 2 deletions

View File

@ -190,8 +190,10 @@ private:
{
if (current.type == tok!";")
{
formatStep();
writeToken();
tempIndent = 0;
if (!(t == tok!"import" && current.type == tok!"import"))
write("\n");
newline();
break;
}