diff options
author | Karl Williamson <khw@cpan.org> | 2019-03-06 17:50:23 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2019-03-07 13:14:26 -0700 |
commit | 21c34e9717de1e37a5e25d2e7d748da66c781488 (patch) | |
tree | 86ce71d42ceff26db39bfd0c754a2aa45197da2b /regen/warnings.pl | |
parent | b37d10f658c300104241001e3f5de1f31d62b22f (diff) | |
download | perl-21c34e9717de1e37a5e25d2e7d748da66c781488.tar.gz |
Add hook for Unicode private use override
I am starting to write a Unicode::Private_Use module which will allow
one to specify the Unicode properties of private use code points, thus
making them actually useful. This commit adds a hook to regcomp.c to
accommodate this module. The changes are pretty minimal. This way we
don't have to wait another release cycle to get it out there.
I don't want to document this interface, until it's proven.
Diffstat (limited to 'regen/warnings.pl')
-rw-r--r-- | regen/warnings.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/regen/warnings.pl b/regen/warnings.pl index 504d86288e..ff08a2f0ce 100644 --- a/regen/warnings.pl +++ b/regen/warnings.pl @@ -16,7 +16,7 @@ # # This script is normally invoked from regen.pl. -$VERSION = '1.43'; +$VERSION = '1.44'; BEGIN { require './regen/regen_lib.pl'; @@ -111,6 +111,8 @@ my $tree = { [ 5.027, DEFAULT_ON ], 'experimental::alpha_assertions' => [ 5.027, DEFAULT_ON ], + 'experimental::private_use' => + [ 5.029, DEFAULT_ON ], }], 'missing' => [ 5.021, DEFAULT_OFF], |