X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXUtil.pm;h=10b3538767822ef46735fb4cc2a8b267e7a8c024;hb=412fb1b9e4070d7791f4e986b55bbc0c06f612ea;hp=9a911b70e4f6dccc2c7968bc9e4523d0ce4734f1;hpb=60d889442d24ab5567fe0b6c9bb923f4297a07bd;p=spider.git diff --git a/perl/DXUtil.pm b/perl/DXUtil.pm index 9a911b70..10b35387 100644 --- a/perl/DXUtil.pm +++ b/perl/DXUtil.pm @@ -195,15 +195,17 @@ sub print_all_fields my @out; my @fields = $ref->fields; my $field; + my $width = $self->width - 1; + $width ||= 80; foreach $field (sort {$ref->field_prompt($a) cmp $ref->field_prompt($b)} @fields) { if (defined $ref->{$field}) { my ($priv, $ans) = promptf($ref->field_prompt($field), $ref->{$field}); my @tmp; - if (length $ans > 79) { + if (length $ans > $width) { my ($p, $a) = split /: /, $ans, 2; my $l = (length $p) + 2; - my $al = 79 - $l; + my $al = ($width - 1) - $l; my $bit; while (length $a > $al ) { ($bit, $a) = unpack "A$al A*", $a;