diff options
author | Karl Williamson <khw@cpan.org> | 2015-08-20 11:52:51 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2015-08-20 12:48:20 -0600 |
commit | 356ad745a622c0a0675fbc8f0abb7a0eb2e5ce51 (patch) | |
tree | 433efa602d42afa94e429874e255be5298c1180a | |
parent | f8b690041a9dddc2b00dd38a514deed7abc7aa3f (diff) | |
download | perl-356ad745a622c0a0675fbc8f0abb7a0eb2e5ce51.tar.gz |
mktables: Comment changes only
-rw-r--r-- | charclass_invlists.h | 2 | ||||
-rw-r--r-- | lib/unicore/mktables | 8 | ||||
-rw-r--r-- | regcharclass.h | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/charclass_invlists.h b/charclass_invlists.h index 3c33b48889..91c38a3bb7 100644 --- a/charclass_invlists.h +++ b/charclass_invlists.h @@ -99537,7 +99537,7 @@ static const UV XPosixXDigit_invlist[] = { /* for EBCDIC POSIX-BC */ * 1a0687fb9c6c4567e853913549df0944fe40821279a3e9cdaa6ab8679bc286fd lib/unicore/extracted/DLineBreak.txt * 40bcfed3ca727c19e1331f6c33806231d5f7eeeabd2e6a9e06a3740c85d0c250 lib/unicore/extracted/DNumType.txt * a18d502bad39d527ac5586d7bc93e29f565859e3bcc24ada627eff606d6f5fed lib/unicore/extracted/DNumValues.txt - * 887daf6d03fd77ccbc68af592605355499930f59114df880d3332b729fc0217a lib/unicore/mktables + * d5895407f73f1bcb0d7ad39e955c0e88a9145e401e868572849eeb134e669269 lib/unicore/mktables * 462c9aaa608fb2014cd9649af1c5c009485c60b9c8b15b89401fdc10cf6161c6 lib/unicore/version * c6884f4d629f04d1316f3476cb1050b6a1b98ca30c903262955d4eae337c6b1e regen/charset_translations.pl * 8a097f8f726bb1619af2f27f149ab87e60a1602f790147e3a561358be16abd27 regen/mk_invlists.pl diff --git a/lib/unicore/mktables b/lib/unicore/mktables index af63b84f4d..c621923828 100644 --- a/lib/unicore/mktables +++ b/lib/unicore/mktables @@ -13252,9 +13252,9 @@ END # For each property, fill in any missing mappings, and calculate the re # match tables. If a property has more than one missing mapping, the - # default is a reference to a data structure, and requires data from other - # properties to resolve. The sort is used to cause these to be processed - # last, after all the other properties have been calculated. + # default is a reference to a data structure, and may require data from + # other properties to resolve. The sort is used to cause these to be + # processed last, after all the other properties have been calculated. # (Fortunately, the missing properties so far don't depend on each other.) foreach my $property (sort { (defined $a->default_map && ref $a->default_map) ? 1 : -1 } @@ -13564,7 +13564,7 @@ sub pre_3_dot_1_Nl () { return $Nl; } -sub calculate_Assigned() { # Calculate the gc != Cn code points; may be +sub calculate_Assigned() { # Set $Assigned to the gc != Cn code points; may be # called before the Cn's are completely filled. # Works on Unicodes earlier than ones that # explicitly specify Cn. diff --git a/regcharclass.h b/regcharclass.h index 76e4a45605..72e25fed7a 100644 --- a/regcharclass.h +++ b/regcharclass.h @@ -2514,7 +2514,7 @@ * 1a0687fb9c6c4567e853913549df0944fe40821279a3e9cdaa6ab8679bc286fd lib/unicore/extracted/DLineBreak.txt * 40bcfed3ca727c19e1331f6c33806231d5f7eeeabd2e6a9e06a3740c85d0c250 lib/unicore/extracted/DNumType.txt * a18d502bad39d527ac5586d7bc93e29f565859e3bcc24ada627eff606d6f5fed lib/unicore/extracted/DNumValues.txt - * 887daf6d03fd77ccbc68af592605355499930f59114df880d3332b729fc0217a lib/unicore/mktables + * d5895407f73f1bcb0d7ad39e955c0e88a9145e401e868572849eeb134e669269 lib/unicore/mktables * 462c9aaa608fb2014cd9649af1c5c009485c60b9c8b15b89401fdc10cf6161c6 lib/unicore/version * c6884f4d629f04d1316f3476cb1050b6a1b98ca30c903262955d4eae337c6b1e regen/charset_translations.pl * d9c04ac46bdd81bb3e26519f2b8eb6242cb12337205add3f7cf092b0c58dccc4 regen/regcharclass.pl |