summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-07-01 10:02:35 -0600
committerKarl Williamson <public@khwilliamson.com>2011-07-03 14:05:49 -0600
commite1759d043939c0b3bb25c6d8408f1ee9f81175c1 (patch)
tree100cdf208aefe04e1b411ca182f7d70e1d14576a /lib
parentf4c2a127695c97f0d85d468a0cc4747762c25841 (diff)
downloadperl-e1759d043939c0b3bb25c6d8408f1ee9f81175c1.tar.gz
mktables: add comment
Diffstat (limited to 'lib')
-rw-r--r--lib/unicore/mktables7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/unicore/mktables b/lib/unicore/mktables
index 5cf674a2eb..95eff41e2d 100644
--- a/lib/unicore/mktables
+++ b/lib/unicore/mktables
@@ -11193,7 +11193,12 @@ sub finish_Unicode() {
$default_table = $property->add_match_table($default_map);
}
- # This fills in any missing values with the default.
+ # This fills in any missing values with the default. It's
+ # tempting to save some time and memory in running this program
+ # by skipping this step for binary tables where the default
+ # is easily calculated. But it is needed for generating
+ # the test file, and other changes would also be required to do
+ # so.
$property->add_map(0, $LAST_UNICODE_CODEPOINT,
$default_map, Replace => $NO);
}