diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-03-16 23:11:11 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-03-16 23:11:11 +0000 |
commit | e07ea26af5fdde170ce4e4e0a797a364c6a185e6 (patch) | |
tree | 7d0009f2fe30f4472e8e4ed56660210b01eb8813 /perlapi.h | |
parent | c1ab7b38fcd3bc8e1433bc0b361e5e875c51124e (diff) | |
download | perl-e07ea26af5fdde170ce4e4e0a797a364c6a185e6.tar.gz |
Add a new per-interpeter variable PL_utf8cache, which will be used to
control the UTF-8 offset caching code. Make this visible as
${^UTF8CACHE}
p4raw-id: //depot/perl@27525
Diffstat (limited to 'perlapi.h')
-rw-r--r-- | perlapi.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -686,6 +686,8 @@ END_EXTERN_C #define PL_utf8_upper (*Perl_Iutf8_upper_ptr(aTHX)) #undef PL_utf8_xdigit #define PL_utf8_xdigit (*Perl_Iutf8_xdigit_ptr(aTHX)) +#undef PL_utf8cache +#define PL_utf8cache (*Perl_Iutf8cache_ptr(aTHX)) #undef PL_utf8locale #define PL_utf8locale (*Perl_Iutf8locale_ptr(aTHX)) #undef PL_uudmap |