diff options
author | Karl Williamson <khw@cpan.org> | 2016-03-15 16:19:30 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2016-03-17 16:13:49 -0600 |
commit | 933afa2c456ccd7f9ecc3376f645028e485c874f (patch) | |
tree | 9c85722ddec80d17b5ec04c8b2e0679decf19cee /lib/unicore | |
parent | 405350d5a880c875cd450beac2a60417ebc58f01 (diff) | |
download | perl-933afa2c456ccd7f9ecc3376f645028e485c874f.tar.gz |
mktables: Unicode 1.5 only had 2**16 code points
Therefore, we shouldn't add any above that.
Diffstat (limited to 'lib/unicore')
-rw-r--r-- | lib/unicore/mktables | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/unicore/mktables b/lib/unicore/mktables index d5bf0092ec..4ab9eb7ac0 100644 --- a/lib/unicore/mktables +++ b/lib/unicore/mktables @@ -15051,8 +15051,8 @@ END 0x2060 .. 0x206F, 0xFE00 .. 0xFE0F, 0xFFF0 .. 0xFFFB, - 0xE0000 .. 0xE0FFF, ]); + $temp->add_range(0xE0000, 0xE0FFF) if $v_version ge v2.0; $quotemeta += $temp; } calculate_DI(); |