--- trunk/parse_format.pm 2003/01/16 17:35:54 10 +++ trunk/parse_format.pm 2003/02/23 00:01:08 22 @@ -29,6 +29,16 @@ $swish .= $isis_tmp." "; } $prefix = ""; + # this might be our local scpeciality -- fields 10 and 11 + # (as opposed to 010 and 011) so they are strictly listed + # here + } elsif ($format =~ s/^(1[01])//) { + my $isis_tmp = isis_sf($row,$1,$2); + if ($isis_tmp) { + $display .= $prefix . $isis_tmp; + $swish .= $isis_tmp." "; + } + $prefix = ""; } elsif ($format =~ s/^([^\d]+)(\d{0,3})/$2/) { $prefix .= $1; } elsif ($format =~ s/^([^\d]+\d{0,2})//) {