From 80bf4fef41cbd28e5329ef93733459f9342fffa7 Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Sat, 2 Feb 2002 02:08:42 +0000 Subject: [PATCH] EBCDIC: no hope to get the low 256 right in unifolding. p4raw-id: //depot/perl@14521 --- t/uni/fold.t | 3 +++ 1 file changed, 3 insertions(+) diff --git a/t/uni/fold.t b/t/uni/fold.t index a068e65..936a690 100644 --- a/t/uni/fold.t +++ b/t/uni/fold.t @@ -9,12 +9,15 @@ my $CF = File::Spec->catfile(File::Spec->catdir(File::Spec->updir, "lib", "unicore"), "CaseFolding.txt"); +use constant EBCDIC => ord 'A' == 193; + if (open(CF, $CF)) { my @CF; while () { if (/^([0-9A-F]+); ([CFSI]); ((?:[0-9A-F]+)(?: [0-9A-F]+)*); \# (.+)/) { next if $2 eq 'S'; # we are going for 'F'ull case folding + next if EBCDIC && hex $1 < 0x100; push @CF, [$1, $2, $3, $4]; } } -- 1.8.3.1