diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-21 19:16:00 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-21 19:16:00 +0000 |
commit | 551b6b6ff9895983c94b1aff97abae5f0914a105 (patch) | |
tree | 8b27bada3e52ba364cbe8eb1d341d2e14014b8eb /ext/Unicode | |
parent | 1faa7c87e80ec7422c7d30d8f9e68527782f5953 (diff) | |
download | perl-551b6b6ff9895983c94b1aff97abae5f0914a105.tar.gz |
Undo the renaming of the Unicode data files; the simple
solution being not including the *.html files. This means
that in the future there is no need for any renamings
(well, assuming that the Consortium doesn't cause any),
and the files are named like they are in the Consortium
website, thus alleviating confusion.
p4raw-id: //depot/perl@14370
Diffstat (limited to 'ext/Unicode')
-rw-r--r-- | ext/Unicode/Normalize/README | 6 | ||||
-rw-r--r-- | ext/Unicode/Normalize/mkheader | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ext/Unicode/Normalize/README b/ext/Unicode/Normalize/README index db54b1f334..96c456a592 100644 --- a/ext/Unicode/Normalize/README +++ b/ext/Unicode/Normalize/README @@ -48,9 +48,9 @@ Carp Exporter File::Copy File::Spec -unicore/CombiningClass.pl or unicode/CombiningClass.pl -unicore/Decomposition.pl or unicode/Decomposition.pl -unicore/CompExcl.txt or unicode/CompExcl.txt +unicore/CombiningClass.pl or unicode/CombiningClass.pl +unicore/Decomposition.pl or unicode/Decomposition.pl +unicore/CompositionExclusions.txt or unicode/CompExcl.txt and for the Non-XS version, in addition to the above, Lingua::KO::Hangul::Util 0.06 diff --git a/ext/Unicode/Normalize/mkheader b/ext/Unicode/Normalize/mkheader index 7aef304794..ddd8cbf14d 100644 --- a/ext/Unicode/Normalize/mkheader +++ b/ext/Unicode/Normalize/mkheader @@ -32,7 +32,7 @@ our %Exclus; # $codepoint => 1 : composition exclusions my($f, $fh); foreach my $d (@INC) { use File::Spec; - $f = File::Spec->catfile($d, "unicore", "CompExcl.txt"); + $f = File::Spec->catfile($d, "unicore", "CompositionExclusions.txt"); last if open($fh, $f); $f = File::Spec->catfile($d, "unicode", "CompExcl.txt"); last if open($fh, $f); |