This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
fix wordwrapping on generated acknowledgements text
authorKaren Etheridge <ether@cpan.org>
Tue, 21 Nov 2017 22:43:04 +0000 (14:43 -0800)
committerKaren Etheridge <ether@cpan.org>
Tue, 21 Nov 2017 22:43:22 +0000 (14:43 -0800)
experimentation reveals that 77 chars is just sufficient to produce
output such that gmail will not re-wrap the text and make release
announcements dreadfully ugly.

Porting/acknowledgements.pl

index 2d13564..ce697e2 100644 (file)
@@ -25,7 +25,7 @@ use Text::Wrap;
 use Time::Piece;
 use Time::Seconds;
 use version;
-$Text::Wrap::columns = 80;
+$Text::Wrap::columns = 77;
 
 my $since_until = shift;