mk_PL_charclass.pl: Correct comment
authorKarl Williamson <public@khwilliamson.com>
Sun, 14 Nov 2010 19:20:40 +0000 (12:20 -0700)
committerFather Chrysostomos <sprout@cpan.org>
Mon, 22 Nov 2010 21:32:53 +0000 (13:32 -0800)
Porting/mk_PL_charclass.pl

index 64599e0..25293b9 100644 (file)
@@ -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'