summaryrefslogtreecommitdiff
path: root/intrpvar.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-03-16 23:11:11 +0000
committerNicholas Clark <nick@ccl4.org>2006-03-16 23:11:11 +0000
commite07ea26af5fdde170ce4e4e0a797a364c6a185e6 (patch)
tree7d0009f2fe30f4472e8e4ed56660210b01eb8813 /intrpvar.h
parentc1ab7b38fcd3bc8e1433bc0b361e5e875c51124e (diff)
downloadperl-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 'intrpvar.h')
-rw-r--r--intrpvar.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/intrpvar.h b/intrpvar.h
index 3a48de54b1..aa31aafc49 100644
--- a/intrpvar.h
+++ b/intrpvar.h
@@ -553,6 +553,8 @@ PERLVARI(Imy_cxt_list, void **, NULL) /* per-module array of MY_CXT pointers */
PERLVAR(Imemory_debug_header, struct perl_memory_debug_header)
#endif
+PERLVARI(Iutf8cache, signed char, 1) /* Is the utf8 caching code enabled? */
+
/* New variables must be added to the very end, before this comment,
* for binary compatibility (the offsets of the old members must not change).
* (Don't forget to add your variable also to perl_clone()!)