From 7258295b51ee7cac64553fcbcee5e51bd204fbbf Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sat, 14 Jul 2018 13:05:52 -0600 Subject: Make global two interpreter variables These variables are constant, once initialized, through the life of a program, so having them be per instance is a waste of time and space --- perlvars.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'perlvars.h') diff --git a/perlvars.h b/perlvars.h index ce17ece2df..82bce27886 100644 --- a/perlvars.h +++ b/perlvars.h @@ -303,6 +303,8 @@ PERLVAR(G, utf8_tofold, SV *) PERLVAR(G, utf8_tosimplefold, SV *) PERLVAR(G, utf8_charname_begin, SV *) PERLVAR(G, utf8_charname_continue, SV *) +PERLVAR(G, utf8_mark, SV *) +PERLVAR(G, InBitmap, SV *) /* Everything that folds to a given character, for case insensitivity regex * matching */ -- cgit v1.2.1