Remove trailing spaces and newlines.

This simply removes trailing spaces and '\n' characters left by p0nce's
contribution of adding windows support.
This commit is contained in:
yamadapc 2014-07-30 14:35:19 -03:00
parent f630d6fdfa
commit d0becf6a63
2 changed files with 3 additions and 7 deletions

View file

@ -71,4 +71,3 @@ void cwrite(S...)(File f, S args)
f.write(s);
}
}

View file

@ -55,7 +55,7 @@ version(Windows)
return CharAction.flush;
}
break;
case escaped:
if (d == '[')
{
@ -64,8 +64,8 @@ version(Windows)
return CharAction.drop;
}
break;
case readingAttribute:
if (d >= '0' && d <= '9')
{
@ -157,6 +157,3 @@ version(Windows)
}
}
}