diff options
author | Karl Williamson <khw@cpan.org> | 2018-03-25 11:41:15 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2018-03-26 16:50:29 -0600 |
commit | e80a0113c4a8036dfb22aec44d0a9feb65d36fed (patch) | |
tree | 73662d2c4002a44d727b19e948d2e2dfe83ef0ba /perlvars.h | |
parent | 5174a8215ac5f41173effe13ac2a969be3ac40e0 (diff) | |
download | perl-e80a0113c4a8036dfb22aec44d0a9feb65d36fed.tar.gz |
Move case change invlists from interpreter to global
These are now constant through the life of the program, so don't need to
be duplicated at each new thread instantiation.
Diffstat (limited to 'perlvars.h')
-rw-r--r-- | perlvars.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/perlvars.h b/perlvars.h index e3ded3c7ef..a3ba851b22 100644 --- a/perlvars.h +++ b/perlvars.h @@ -295,3 +295,8 @@ PERLVAR(G, utf8_xidcont, SV *) PERLVAR(G, utf8_xidstart, SV *) PERLVAR(G, WB_invlist, SV *) PERLVARA(G, XPosix_ptrs, POSIX_CC_COUNT, SV *) +PERLVAR(G, utf8_toupper, SV *) +PERLVAR(G, utf8_totitle, SV *) +PERLVAR(G, utf8_tolower, SV *) +PERLVAR(G, utf8_tofold, SV *) +PERLVAR(G, utf8_tosimplefold, SV *) |