diff options
author | Karl Williamson <khw@cpan.org> | 2018-07-14 13:05:52 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2018-07-14 17:41:02 -0600 |
commit | 7258295b51ee7cac64553fcbcee5e51bd204fbbf (patch) | |
tree | c1022227ea3be07a9a809f932d4a4dca3c1b08ed /intrpvar.h | |
parent | 6b877bbd2c071b3e0659fab552a74dc2ff7e08fb (diff) | |
download | perl-7258295b51ee7cac64553fcbcee5e51bd204fbbf.tar.gz |
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
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/intrpvar.h b/intrpvar.h index f7b6ee326e..fad1eaafbb 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -640,11 +640,7 @@ PERLVARI(I, underlying_numeric_obj, locale_t, NULL) # endif #endif /* !USE_LOCALE_NUMERIC */ -/* Unicode inversion lists */ -PERLVAR(I, InBitmap, SV *) - /* utf8 character class swashes */ -PERLVAR(I, utf8_mark, SV *) PERLVAR(I, seen_deprecated_macro, HV *) PERLVAR(I, last_swash_hv, HV *) |