summaryrefslogtreecommitdiff
path: root/regen/mk_invlists.pl
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-08-25 18:21:54 -0600
committerKarl Williamson <khw@cpan.org>2019-08-26 09:54:22 -0600
commit9a9a3246d59159e9717e27dee127f17f7158ac35 (patch)
treeacc90b260677beb3048b93b9d47995cf56135158 /regen/mk_invlists.pl
parent4caef9c39de07c61112dd9aaf70c2464ee774420 (diff)
downloadperl-9a9a3246d59159e9717e27dee127f17f7158ac35.tar.gz
regen/mk_invlists.pl: inversion map requires a final entry
Inversion maps are supposed to have an entry for what to do above the Unicode range. This subroutine crafts a custom map that was missing that.
Diffstat (limited to 'regen/mk_invlists.pl')
-rw-r--r--regen/mk_invlists.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/regen/mk_invlists.pl b/regen/mk_invlists.pl
index 8a0c1f071f..62db2f3989 100644
--- a/regen/mk_invlists.pl
+++ b/regen/mk_invlists.pl
@@ -1075,6 +1075,9 @@ sub _Perl_IVCF {
push @invlist, $sorted_folds[-1] + 1;
push @invmap, 0;
+ push @invlist, 0x110000;
+ push @invmap, 0;
+
# All Unicode versions have some places where multiple code points map to
# the same one, so the format always has an 'l'
return \@invlist, \@invmap, 'al', $default;