summaryrefslogtreecommitdiff
path: root/lib/utf8_heavy.pl
diff options
context:
space:
mode:
authorDan Kogai <dankogai@dan.co.jp>2002-05-02 09:44:30 +0900
committerJarkko Hietaniemi <jhi@iki.fi>2002-05-02 22:22:42 +0000
commit99a6b1f0987d0c61da40e4959c219c205f4e94f0 (patch)
treec2e84ed36f9c213766b11a405ab5a80c0e76df62 /lib/utf8_heavy.pl
parent4efc5df63c21e7be3ddafb142377fe2511926c04 (diff)
downloadperl-99a6b1f0987d0c61da40e4959c219c205f4e94f0.tar.gz
Re: Encode, charnames and utf8heavy
Message-Id: <539D985A-5D1A-11D6-BB19-00039301D480@dan.co.jp> (plus a respective perlunicode tweak) p4raw-id: //depot/perl@16354
Diffstat (limited to 'lib/utf8_heavy.pl')
-rw-r--r--lib/utf8_heavy.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utf8_heavy.pl b/lib/utf8_heavy.pl
index d5a0b335c2..72ef54771d 100644
--- a/lib/utf8_heavy.pl
+++ b/lib/utf8_heavy.pl
@@ -271,7 +271,7 @@ sub SWASHGET {
}
else {
LINE:
- while (/^([0-9a-fA-F]+)(?:\t([0-9a-fA-F]+))?/mg) {
+ while (/^([0-9a-fA-F]+)(?:[ \t]+([0-9a-fA-F]+))?/mg) {
my $min = hex $1;
my $max = (defined $2 ? hex $2 : $min);
next if $max < $start;