Improve comment spacing

This commit is contained in:
Hackerpilot 2015-02-19 18:04:50 -08:00
parent 5baf5e3559
commit 4bcb152c25
1 changed files with 5 additions and 1 deletions

View File

@ -179,8 +179,12 @@ private:
{
if (index > 0)
{
if (tokens[index - 1].line + 1 < tokens[index].line)
if (tokens[index - 1].type != tok!";"
&& tokens[index - 1].type != tok!"}"
&& tokens[index - 1].line + 1 < tokens[index].line)
{
newline();
}
else if (tokens[index - 1].line == tokens[index].line)
write(" ");
}