From b4067008f123b7492f82d744c12ca27964658096 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Tue, 1 Mar 2011 07:56:52 -0700 Subject: [PATCH] Revert "mktables: Default map tables to range size 1." This reverts commit cef6a343d5e19fe2dc2c3655ecf621c8ff26f252. This commit had the unintended consequence of greatly increasing the disk space used; the code in UCD.pm that didn't like ranges has now been changed to accept them. The tables that the swashes currently read already had been set to not put out ranges. If other tables eventually do get read by swashes, things will have to be resolved at that time. --- lib/unicore/mktables | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/unicore/mktables b/lib/unicore/mktables index f782a16..e3fa1ab 100644 --- a/lib/unicore/mktables +++ b/lib/unicore/mktables @@ -5393,9 +5393,6 @@ sub trace { return main::trace(@_); } my $default_map = delete $args{'Default_Map'}; my $property = delete $args{'_Property'}; my $full_name = delete $args{'Full_Name'}; - - # Default map tables to range size 1 - my $range_size_1 = delete $args{'Range_Size_1'} // 1; # Rest of parameters passed on my $range_list = Range_Map->new(Owner => $property); @@ -5406,7 +5403,6 @@ sub trace { return main::trace(@_); } Full_Name => $full_name, _Property => $property, _Range_List => $range_list, - Range_Size_1 => $range_size_1, %args); my $addr = do { no overloading; pack 'J', $self; }; -- 2.7.4