From: Karl Williamson Date: Sun, 14 Nov 2010 19:20:40 +0000 (-0700) Subject: mk_PL_charclass.pl: Correct comment X-Git-Tag: accepted/trunk/20130322.191538~6641 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8d4ab2a129cd57b8e1937871a3c1e730a2acb730;p=platform%2Fupstream%2Fperl.git mk_PL_charclass.pl: Correct comment --- diff --git a/Porting/mk_PL_charclass.pl b/Porting/mk_PL_charclass.pl index 64599e0..25293b9 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'