summaryrefslogtreecommitdiff
path: root/Porting
diff options
context:
space:
mode:
authorLeon Brocard <acme@astray.com>2011-07-07 12:25:16 +0100
committerLeon Brocard <acme@astray.com>2011-07-07 12:25:16 +0100
commitf229537a3ecd9db056c7d315dbbf103a048e10dc (patch)
tree36f028f54bf698ced7c62e1e5596bc26dbbb641c /Porting
parent04abd20e17261b00e883280b7034f0df22e01cec (diff)
downloadperl-f229537a3ecd9db056c7d315dbbf103a048e10dc.tar.gz
Wrap text with Porting/checkAUTHORS.pl --who option, perfect for inserting into perldelta
Diffstat (limited to 'Porting')
-rwxr-xr-xPorting/checkAUTHORS.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Porting/checkAUTHORS.pl b/Porting/checkAUTHORS.pl
index 38b24a7d51..9c6c71245a 100755
--- a/Porting/checkAUTHORS.pl
+++ b/Porting/checkAUTHORS.pl
@@ -83,9 +83,9 @@ EOS
sub list_authors {
my ($patchers, $authors) = @_;
binmode(STDOUT, ":utf8");
- print "$_\n" for sort { lc $a cmp lc $b }
+ print wrap '', '', join(', ', sort { lc $a cmp lc $b }
map { $authors->{$_} }
- keys %$patchers;
+ keys %$patchers) . ".\n";
}
sub parse_commits_from_stdin {