From 33f29a4cec504672835fd47a5b11657983d0209e Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Mon, 26 Nov 2012 16:06:53 -0700 Subject: Remove 3 unused interpreter variables These variables have been unused in the Perl core since commit 4c88d5e0740d796bf5064336d280bba72897f385. The variables are undocumented. The only real use of any of these I found in CPAN is at https://metacpan.org/source/ABERGMAN/Devel-GC-Helper-0.25/Helper.xs#L1 The uses there appear to be in a list of known Perl variables. Since the module was published, more than a few new variables have been added, making this code obsolete anyway. --- embedvar.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'embedvar.h') diff --git a/embedvar.h b/embedvar.h index 47e0b32bc8..0c25f34092 100644 --- a/embedvar.h +++ b/embedvar.h @@ -354,7 +354,6 @@ #define PL_utf8_X_regular_begin (vTHX->Iutf8_X_regular_begin) #define PL_utf8_alnum (vTHX->Iutf8_alnum) #define PL_utf8_alpha (vTHX->Iutf8_alpha) -#define PL_utf8_blank (vTHX->Iutf8_blank) #define PL_utf8_charname_begin (vTHX->Iutf8_charname_begin) #define PL_utf8_charname_continue (vTHX->Iutf8_charname_continue) #define PL_utf8_digit (vTHX->Iutf8_digit) @@ -368,13 +367,11 @@ #define PL_utf8_perl_idstart (vTHX->Iutf8_perl_idstart) #define PL_utf8_print (vTHX->Iutf8_print) #define PL_utf8_punct (vTHX->Iutf8_punct) -#define PL_utf8_space (vTHX->Iutf8_space) #define PL_utf8_tofold (vTHX->Iutf8_tofold) #define PL_utf8_tolower (vTHX->Iutf8_tolower) #define PL_utf8_totitle (vTHX->Iutf8_totitle) #define PL_utf8_toupper (vTHX->Iutf8_toupper) #define PL_utf8_upper (vTHX->Iutf8_upper) -#define PL_utf8_xdigit (vTHX->Iutf8_xdigit) #define PL_utf8_xidcont (vTHX->Iutf8_xidcont) #define PL_utf8_xidstart (vTHX->Iutf8_xidstart) #define PL_utf8cache (vTHX->Iutf8cache) -- cgit v1.2.1