--- trunk/parse_format.pm 2003/11/24 01:16:04 176 +++ trunk/parse_format.pm 2003/11/29 18:58:34 187 @@ -80,7 +80,7 @@ # this might be our local scpeciality -- fields 10 and 11 # (as opposed to 010 and 011) so they are strictly listed # here - } elsif ($f =~ s/^(1[01])//) { + } elsif ($f =~ s/^(1[01]\w?)//) { push @fmt,$1; push @fmt,undef; } elsif ($f =~ s/^mfn//i) { @@ -113,7 +113,7 @@ push @fmt,'' if ($#fmt % 3 != 0); # add empty suffix $cache->{format}->{$format} = \@fmt; - print STDERR "storing format for '$format': [",join("|",@fmt),"]\n"; +# print STDERR "storing format for '$format': [",join("|",@fmt),"]\n"; # print STDERR "storing format for '$format':",Dumper(@fmt),"\n"; # print STDERR Dumper($cache->{format}->{$format}); } @@ -155,7 +155,7 @@ print STDERR "format: [",join("|",@{$tmp}),"]\n" if (@fmt); -# print STDERR "display: $display swish: $swish\n"; +# print STDERR "format: {",$format || '',"} display: {",$display || '',"} swish: {",$swish || '',"}\n"; return ($swish,$display); }