Future-proofing from Jeffrey Friedl (for conflicting
Jarkko Hietaniemi [Sun, 13 Jan 2002 17:46:45 +0000 (17:46 +0000)]
In* and Is* names).

p4raw-id: //depot/perl@14242

lib/utf8_heavy.pl

index 4fbb112..21cd7d8 100644 (file)
@@ -52,7 +52,7 @@ sub SWASHNEW {
                }
            }
 
-           unless (defined $file) {
+           unless ($list or defined $file) {
                defined %utf8::In || do "unicore/In.pl";
                $type = 'Lampersand' if $type =~ /^(?:Is)?L&$/;
                $type = 'Assigned'   if $type =~ /^(?:Is)?Assigned$/i;
@@ -88,7 +88,7 @@ sub SWASHNEW {
                }
            }
 
-           unless (defined $file) {
+           unless ($list or defined $file) {
                if ($type =~ /^To([A-Z][A-Za-z]+)$/) {
                    $file = "unicore/To/$1";
                }