diff options
author | Karl Williamson <public@khwilliamson.com> | 2010-11-14 12:20:40 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-11-22 13:32:53 -0800 |
commit | 8d4ab2a129cd57b8e1937871a3c1e730a2acb730 (patch) | |
tree | cfcdfc2ad29ca0e0d3d86244f7815263379f959e /Porting | |
parent | 3dd10fe8450c405da35678d844f7a7fbb1dafc9f (diff) | |
download | perl-8d4ab2a129cd57b8e1937871a3c1e730a2acb730.tar.gz |
mk_PL_charclass.pl: Correct comment
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/mk_PL_charclass.pl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Porting/mk_PL_charclass.pl b/Porting/mk_PL_charclass.pl index 64599e029f..25293b988f 100644 --- a/Porting/mk_PL_charclass.pl +++ b/Porting/mk_PL_charclass.pl @@ -5,11 +5,11 @@ use warnings; # This program outputs the 256 lines that form the guts of the PL_charclass # table. The output should be used to manually replace the table contents in -# perl.h. Each line is a bit map of properties that the Unicode code point at -# the corresponding position in the table array has. The first line -# corresponds to code point U+0000, NULL, the last line to U=00FF. For an -# application to see if the code point "i" has a particular property, it just -# does +# l1_charclass_tab.h. Each line is a bit map of properties that the Unicode +# code point at the corresponding position in the table array has. The first +# line corresponds to code point U+0000, NULL, the last line to U=00FF. For +# an application to see if the code point "i" has a particular property, it +# just does # 'PL_charclass[i] & BIT' # The bit names are of the form '_CC_property_suffix', where 'CC' stands for # character class, and 'property' is the corresponding property, and 'suffix' |