diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-05-15 20:49:33 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-06-02 08:29:21 -0600 |
commit | 3cdaf629e91b8ba398d8d67d4eb89e4cb60dc00f (patch) | |
tree | 5d6cbba20d1b08e339428202f77f08535a3dd2d9 /lib/unicore | |
parent | 5a5f34c4dea90bbeeaae41872ff8f8e15af64447 (diff) | |
download | perl-3cdaf629e91b8ba398d8d67d4eb89e4cb60dc00f.tar.gz |
mktables: Reorder enum
This will enable future commits to use '<' and '>' for some tests
Diffstat (limited to 'lib/unicore')
-rw-r--r-- | lib/unicore/mktables | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/lib/unicore/mktables b/lib/unicore/mktables index 5bfc4f9656..a2b403b345 100644 --- a/lib/unicore/mktables +++ b/lib/unicore/mktables @@ -1234,13 +1234,16 @@ my $ORDINARY = 0; # The normal fate. my $MAP_PROXIED = 1; # The map table for the property isn't written out, # but there is a file written that can be used to # reconstruct this table -my $SUPPRESSED = 3; # The file for this table is not written out. -my $INTERNAL_ONLY = 4; # The file for this table is written out, but it is +my $INTERNAL_ONLY = 2; # The file for this table is written out, but it is # for Perl's internal use only -my $PLACEHOLDER = 5; # A property that is defined as a placeholder in a - # Unicode version that doesn't have it, but we need it - # to be defined, if empty, to have things work. - # Implies no pod entry generated +my $SUPPRESSED = 3; # The file for this table is not written out, and as a + # result, we don't bother to do many computations on + # it. +my $PLACEHOLDER = 4; # Like $SUPPRESSED, but we go through all the + # computations anyway, as the values are needed for + # things to work. This happens when we have Perl + # extensions that depend on Unicode tables that + # wouldn't normally be in a given Unicode version. # The format of the values of the tables: my $EMPTY_FORMAT = ""; |