diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-08-10 07:38:30 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-08-10 07:38:30 +0000 |
commit | 9112abd4c7cab282eaedd0733624fcb0136fb606 (patch) | |
tree | 535e68b5f672a0134f7f9c3d64f70a331c634791 /lib/unicode | |
parent | 627300f0f7d7170cc4e8db033fb6e61547324f64 (diff) | |
download | perl-9112abd4c7cab282eaedd0733624fcb0136fb606.tar.gz |
Remove blathering.
p4raw-id: //depot/cfgperl@3943
Diffstat (limited to 'lib/unicode')
-rwxr-xr-x | lib/unicode/mktables.PL | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/lib/unicode/mktables.PL b/lib/unicode/mktables.PL index f54ea692c4..0b3a8e0d3a 100755 --- a/lib/unicode/mktables.PL +++ b/lib/unicode/mktables.PL @@ -336,28 +336,6 @@ while (<UNICODEDATA>) { push @base, [ $code, $1 ]; push @base, [ $code, $1.$2 ] if $2 ne ''; - - # Before this "diacritics stripping" phase (and for Arabic, also - # "form stripping" phase) all ligatures could be decomposed into - # their constituent letters. - # - # For example the ligature - # ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH ALEF ISOLATED FORM - # would go first through ligature decomposition producing the two letters - # ARABIC LETTER YEH WITH HAMZA ABOVE ISOLATED FORM - # ARABIC LETTER ALEF WITH HAMZA ABOVE ISOLATED FORM - # and those with diacritics stripping - # ARABIC LETTER YEH ISOLATED FORM - # ARABIC LETTER ALEF ISOLATED FORM - # and those with the Arabic form stripping - # ARABIC LETTER YEH - # ARABIC LETTER ALEF ISOLATED FORM - # ARABIC LETTER YEH - # ARABIC LETTER ALEF ISOLATED FORM - # - # Similarly for ligatures from other scripts. - # Effectively this would mean that ligatures turn into categories - # (Unicodese for character classes). } foreach my $b (@base) { |