| commit | 9e32199861c082d36b0439756f616ee91855dd6e | [log] [tgz] |
|---|---|---|
| author | Manuel Klimek <klimek@google.com> | Tue Jul 28 15:50:24 2015 +0000 |
| committer | Manuel Klimek <klimek@google.com> | Tue Jul 28 15:50:24 2015 +0000 |
| tree | c4384666af27058c1a441e9d2e47a3483032519a | |
| parent | 7d47b7a29466ecfa7c9907243e1d375225a78fb0 [diff] |
Do not force linebreaks when MaxEmptyLinesToKeep is 0.
Previously we would format
call(
p);
as
call(
p);
with MaxEmptyLinesToKeep == 0.
Now we format it as:
call(p);
llvm-svn: 243429