diff options
Diffstat (limited to 'Porting/genlog')
-rwxr-xr-x | Porting/genlog | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Porting/genlog b/Porting/genlog index 5c3e90577e..b8bd1d6b2f 100755 --- a/Porting/genlog +++ b/Porting/genlog @@ -107,8 +107,9 @@ EOT my $files = $files{$branch}{$kind}; # don't show large branches and integrations $files = ["($kind " . scalar(@$files) . ' files)'] - if (@$files > 25 - && ( $kind eq 'integrate' || $kind eq 'branch')); + if (@$files > 25 && ($kind eq 'integrate' + || $kind eq 'branch')) + || @$files > 100; print wrap(sprintf("%12s ", $editkind{$kind}), sprintf("%12s ", $editkind{$kind}), "@$files\n"); |