File tree Expand file tree Collapse file tree 8 files changed +10
-10
lines changed
Expand file tree Collapse file tree 8 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -1090,8 +1090,8 @@ package Maintainers;
10901090 },
10911091
10921092 ' Term::Table' => {
1093- ' DISTRIBUTION' => ' EXODIST/Term-Table-0.027 .tar.gz' ,
1094- ' SYNCINFO' => ' jkeenan on Sat Nov 15 21:20:44 2025' ,
1093+ ' DISTRIBUTION' => ' EXODIST/Term-Table-0.028 .tar.gz' ,
1094+ ' SYNCINFO' => ' jkeenan on Fri Nov 28 08:45:03 2025' ,
10951095 ' FILES' => q[ cpan/Term-Table] ,
10961096 ' EXCLUDED' => [
10971097 qw( appveyor.yml ) ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Term::Table;
22use strict;
33use warnings;
44
5- our $VERSION = ' 0.027 ' ;
5+ our $VERSION = ' 0.028 ' ;
66
77use Term::Table::Cell();
88
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Term::Table::Cell;
22use strict;
33use warnings;
44
5- our $VERSION = ' 0.027 ' ;
5+ our $VERSION = ' 0.028 ' ;
66
77use Term::Table::LineBreak();
88use Term::Table::Util qw/ uni_length/ ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Term::Table::CellStack;
22use strict;
33use warnings;
44
5- our $VERSION = ' 0.027 ' ;
5+ our $VERSION = ' 0.028 ' ;
66
77use Term::Table::HashBase qw/ -cells -idx/ ;
88
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Term::Table::HashBase;
22use strict;
33use warnings;
44
5- our $VERSION = ' 0.027 ' ;
5+ our $VERSION = ' 0.028 ' ;
66
77# ################################################################
88# #
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Term::Table::LineBreak;
22use strict;
33use warnings;
44
5- our $VERSION = ' 0.027 ' ;
5+ our $VERSION = ' 0.028 ' ;
66
77use Carp qw/ croak/ ;
88use Scalar::Util qw/ blessed/ ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Term::Table::Spacer;
22use strict;
33use warnings;
44
5- our $VERSION = ' 0.027 ' ;
5+ our $VERSION = ' 0.028 ' ;
66
77sub new { bless {}, $_ [0] }
88
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use warnings;
55use List::Util qw/ max/ ;
66use Config qw/ %Config/ ;
77
8- our $VERSION = ' 0.027 ' ;
8+ our $VERSION = ' 0.028 ' ;
99
1010use base ' Exporter' ;
1111our @EXPORT_OK = qw/ term_size USE_GCS USE_TERM_READKEY USE_TERM_SIZE_ANY uni_length/ ;
@@ -38,7 +38,7 @@ if ($tsa) {
3838 *USE_TERM_READKEY = sub () { 0 };
3939 *USE_TERM_SIZE_ANY = sub () { 1 };
4040 *_term_size = sub {
41- my $size = max map { chars($_ ) // DEFAULT_SIZE } @IO ;
41+ my $size = max map { chars($_ ) || DEFAULT_SIZE } @IO ;
4242
4343 if (!$size || $size < DEFAULT_SIZE) {
4444 return $ENV {COLUMNS } if $ENV {COLUMNS } && $ENV {COLUMNS } > DEFAULT_SIZE;
You can’t perform that action at this time.
0 commit comments