Skip Menu |

This queue is for tickets about the Text-TabularDisplay CPAN distribution.

Report information
The Basics
Id: 7693
Status: resolved
Worked: 20 min
Priority: 0/
Queue: Text-TabularDisplay

People
Owner: darren [...] cpan.org
Requestors: cholet [...] logilune.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 1.18
Fixed in: (no value)



Subject: not -w clean
This warning is displayed when the module is used under -w: Use of uninitialized value in integer gt (>) at /Library/Perl/Text/TabularDisplay.pm line 242. Patch: @@ -240,7 +240,7 @@ push @data, $add->[$i]; $length->[$i] = $l - unless $length->[$i] > $l; + unless $length->[$i] && $length->[$i] > $l; } push @$where, \@data; }
[CHOLET - Sat Sep 18 12:28:42 2004]: Show quoted text
> This warning is displayed when the module is used under -w: > > Use of uninitialized value in integer gt (>) at > /Library/Perl/Text/TabularDisplay.pm line 242.
I've uploaded a new version of Text::TabularDisplay, version 1.19, with your patch applied. Tests now pass without emitting warnings where they did not previously.