summaryrefslogtreecommitdiffstats
path: root/contrib/perl5/Porting/genlog
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/perl5/Porting/genlog')
-rwxr-xr-xcontrib/perl5/Porting/genlog7
1 files changed, 4 insertions, 3 deletions
diff --git a/contrib/perl5/Porting/genlog b/contrib/perl5/Porting/genlog
index 5c3e905..efb7ef8 100755
--- a/contrib/perl5/Porting/genlog
+++ b/contrib/perl5/Porting/genlog
@@ -12,7 +12,7 @@
#
# Outputs the changelist to stdout.
#
-# Gurusamy Sarathy <gsar@umich.edu>
+# Gurusamy Sarathy <gsar@activestate.com>
#
use Text::Wrap;
@@ -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");
OpenPOWER on IntegriCloud