diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-05-11 06:18:06 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-05-11 06:18:06 +0000 |
commit | 82c0b05bfa6af07a8eed09c3accfe3016c6e65bc (patch) | |
tree | c4e670d50da31fac715ab4d809693700d679d40b | |
parent | 8c20f9ee55f691683c1c4ad9241e24a842217427 (diff) | |
download | perl-82c0b05bfa6af07a8eed09c3accfe3016c6e65bc.tar.gz |
Another doc suggestion from terry@eatoni.com (terry jones):
use codepoints that return undef.
p4raw-id: //depot/perl@19480
-rw-r--r-- | lib/Unicode/UCD.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Unicode/UCD.pm b/lib/Unicode/UCD.pm index 3ca797ec5a..dcb478a54d 100644 --- a/lib/Unicode/UCD.pm +++ b/lib/Unicode/UCD.pm @@ -522,7 +522,7 @@ sub compexcl { use Unicode::UCD 'casefold'; - my $casefold = casefold("09dc"); + my $casefold = casefold("00DF"); The casefold() returns the locale-independent case folding of the character specified by a B<code point argument>. @@ -595,7 +595,7 @@ sub casefold { use Unicode::UCD 'casespec'; - my $casespec = casespec("09dc"); + my $casespec = casespec("FB00"); The casespec() returns the potentially locale-dependent case mapping of the character specified by a B<code point argument>. The mapping @@ -618,7 +618,7 @@ more I<locales> or I<contexts>, separated by spaces (other than as used to separate elements, spaces are to be ignored). A condition list overrides the normal behavior if all of the listed conditions are true. Case distinctions in the condition list are not significant. -Conditions preceded by "NON_" represent the negation of the condition +Conditions preceded by "NON_" represent the negation of the condition. Note that when there are multiple case folding definitions for a single code point because of different locales, the value returned by |