This may have something to do with the new wpxloc.raw format that
I am now using (erm.. testing). But if I check for a a duplicate of
the prefix in the remarks, and that "prefix" (char string length <= 4)
contains a space, Spot::dup crashes. Intermittently.
07Mar14=======================================================================
1. Add new version of wpxloc.raw
+2. Fix a small crash with Spot::dup
12Jan14=======================================================================
1. Fix minor issue with dx command when used in a script, as found by
Christian Furst.
my $l;
my @out;
+#$DB::single = 1;
+
#print "line: $line\n";
foreach $l (@list) {
my @ans = Prefix::extract($l);
next if !@ans;
+# dbg(join(', ', @ans));
my $pre = shift @ans;
my $a;
foreach $a (@ans) {
$text =~ s/\%([0-9A-F][0-9A-F])/chr(hex($1))/eg;
$text = uc unpad($text);
if ($cty && $text && length $text <= 4) {
- unless ($text =~ /^C?Q/ || $text =~ /^\d+$/) {
+ unless ($text =~ /^C?Q/ || $text =~ /^\d+$/ || $text =~ /\s/) {
my @try = Prefix::cty_data($text);
$text = "" if $cty == $try[0];
}
$version = '1.55';
$subversion = '0';
-$build = '142';
-$gitversion = '210ee86';
+$build = '143';
+$gitversion = '3b2eb09';
1;