diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-11-26 16:06:53 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-11-26 16:57:12 -0700 |
commit | 33f29a4cec504672835fd47a5b11657983d0209e (patch) | |
tree | a5dbc40ad20df3c43ca2b542bc33a6061d68559e /embedvar.h | |
parent | 06099f79acc9684bcbd2efbb1efe56ce80c65f08 (diff) | |
download | perl-33f29a4cec504672835fd47a5b11657983d0209e.tar.gz |
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.
Diffstat (limited to 'embedvar.h')
-rw-r--r-- | embedvar.h | 3 |
1 files changed, 0 insertions, 3 deletions
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) |