X-Git-Url: http://www.dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FPrefix.pm;h=5f23fce952174d9719a70c8f07db9ea9111754fc;hb=7432cb12ce865030c8b0315a30764e0088a59102;hp=d4ed48b33dbcf0fa7e8fd8e6daf9339c53cae900;hpb=bdfc958f3d0fa912d20a020ac1a6cd2c79a22729;p=spider.git diff --git a/perl/Prefix.pm b/perl/Prefix.pm index d4ed48b3..5f23fce9 100644 --- a/perl/Prefix.pm +++ b/perl/Prefix.pm @@ -16,9 +16,9 @@ use Data::Dumper; use strict; use vars qw($db %prefix_loc %pre); -local $db; # the DB_File handle -local %prefix_loc; # the meat of the info -local %pre; # the prefix list +$db; # the DB_File handle +%prefix_loc; # the meat of the info +%pre; # the prefix list sub load { @@ -145,9 +145,9 @@ sub extract # remove any /0-9 /P /A /M /MM /AM suffixes etc if (@parts > 1) { $p = $parts[$#parts]; - pop @parts if $p =~ /^\d+|[PABM]|AM|MM|BCN|SIX$/o; + pop @parts if $p =~ /^(\d+|[PABM]|AM|MM|BCN|SIX)$/o; $p = $parts[$#parts]; - pop @parts if $p =~ /^\d+|[PABM]|AM|MM|BCN|SIX$/o; + pop @parts if $p =~ /^(\d+|[PABM]|AM|MM|BCN|SIX)$/o; # can we resolve them by direct lookup foreach $p (@parts) {