diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-10-16 01:58:58 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-10-16 01:58:58 +0000 |
commit | 6abf89b4e9a0a870d17be970dcc7a8f13ab38696 (patch) | |
tree | cfee5f08ab3e739c67799faf80d07f9e775e1c7f /Porting/genlog | |
parent | 87671ffc0b0ccacb922794ca8606103dc9023688 (diff) | |
parent | f0fe56f1f136d50257a26fd1501fffbb95be284e (diff) | |
download | perl-6abf89b4e9a0a870d17be970dcc7a8f13ab38696.tar.gz |
integrate cfgperl mods into mainline
p4raw-id: //depot/perl@1978
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"); |