Fix interaction between newlines and semicolons

This commit is contained in:
Hackerpilot 2015-02-19 17:57:49 -08:00
parent 3209336be9
commit 5baf5e3559
1 changed files with 3 additions and 2 deletions

View File

@ -172,7 +172,7 @@ private:
void formatStep()
{
import std.range : assumeSorted;
import std.algorithm : canFind;
import std.algorithm : canFind, startsWith;
assert (index < tokens.length);
if (current.type == tok!"comment")
@ -387,7 +387,8 @@ private:
tempIndent = 0;
writeToken();
linebreakHints = [];
if (index >= tokens.length || current.type != tok!"comment")
if (index >= tokens.length || current.type != tok!"comment"
|| current.line != tokens[index - 1].line)
newline();
if (peekImplementation(tok!"class",0))
newline();