From 79d9dda3ba0b241596b2ac1daab2c780943c3628 Mon Sep 17 00:00:00 2001 From: minima Date: Wed, 16 Mar 2005 23:03:58 +0000 Subject: [PATCH] don't check things starting in Q --- perl/Spot.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl/Spot.pm b/perl/Spot.pm index 99f0c83e..a57edbe8 100644 --- a/perl/Spot.pm +++ b/perl/Spot.pm @@ -335,7 +335,7 @@ sub dup $text =~ s/\%([0-9A-F][0-9A-F])/chr(hex($1))/eg; $text = uc unpad($text); if ($cty && $text && length $text <= 4) { - unless ($text =~ /^CQ/ || $text =~ /^\d+$/) { + unless ($text =~ /^C?Q/ || $text =~ /^\d+$/) { my @try = Prefix::cty_data($text); $text = "" if $cty == $try[0]; } -- 2.34.1