summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2014-03-18 12:09:25 -0600
committerKarl Williamson <public@khwilliamson.com>2014-03-18 12:51:23 -0600
commit1b6b3fa9c9eacac5564167b012ee3c0bd215d89f (patch)
tree08d571c53447857fd7fe0a8b9af862495640a341
parentd0d250ca67bc95d33e27befe918b74aee7e11c8b (diff)
downloadperl-1b6b3fa9c9eacac5564167b012ee3c0bd215d89f.tar.gz
mktables: Add comments, reorder a gen'd file
This adds some clarifying comments, and reorders Heavy.pl so the array referred to by two hashes occurs before both hashes in the output.
-rw-r--r--lib/unicore/mktables19
1 files changed, 12 insertions, 7 deletions
diff --git a/lib/unicore/mktables b/lib/unicore/mktables
index 2809439d64..a94b3b6583 100644
--- a/lib/unicore/mktables
+++ b/lib/unicore/mktables
@@ -1857,7 +1857,8 @@ package main;
{ # Closure
# This program uses the inside-out method for objects, as recommended in
- # "Perl Best Practices". This closure aids in generating those. There
+ # "Perl Best Practices". (This is the best solution still, since this has
+ # to run under miniperl.) This closure aids in generating those. There
# are two routines. setup_package() is called once per package to set
# things up, and then set_access() is called for each hash representing a
# field in the object. These routines arrange for the object to be
@@ -16362,18 +16363,22 @@ $INTERNAL_ONLY_HEADER
$loose_property_name_of
);
-# Maps property, table to file for those using stricter matching
-\%utf8::stricter_to_file_of = (
-$stricter_to_file_of
-);
-
# Gives the definitions (in the form of inversion lists) for those properties
# whose definitions aren't kept in files
\@utf8::inline_definitions = (
$inline_definitions
);
-# Maps property, table to file for those using loose matching
+# Maps property, table to file for those using stricter matching. For paths
+# whose directory is '#', the file is in the form of a numeric index into
+# \@inline_definitions
+\%utf8::stricter_to_file_of = (
+$stricter_to_file_of
+);
+
+# Maps property, table to file for those using loose matching. For paths
+# whose directory is '#', the file is in the form of a numeric index into
+# \@inline_definitions
\%utf8::loose_to_file_of = (
$loose_to_file_of
);