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 /embedvar.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 'embedvar.h')
-rw-r--r-- | embedvar.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/embedvar.h b/embedvar.h index 64074c48ca..a688c36b12 100644 --- a/embedvar.h +++ b/embedvar.h @@ -444,6 +444,7 @@ #define PL_utf8_toupper (vTHX->Iutf8_toupper) #define PL_utf8_upper (vTHX->Iutf8_upper) #define PL_utf8_xdigit (vTHX->Iutf8_xdigit) +#define PL_utf8cache (vTHX->Iutf8cache) #define PL_utf8locale (vTHX->Iutf8locale) #define PL_uudmap (vTHX->Iuudmap) #define PL_warnhook (vTHX->Iwarnhook) @@ -740,6 +741,7 @@ #define PL_Iutf8_toupper PL_utf8_toupper #define PL_Iutf8_upper PL_utf8_upper #define PL_Iutf8_xdigit PL_utf8_xdigit +#define PL_Iutf8cache PL_utf8cache #define PL_Iutf8locale PL_utf8locale #define PL_Iuudmap PL_uudmap #define PL_Iwarnhook PL_warnhook |