summaryrefslogtreecommitdiff
path: root/intrpvar.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2012-11-26 16:06:53 -0700
committerKarl Williamson <public@khwilliamson.com>2012-11-26 16:57:12 -0700
commit33f29a4cec504672835fd47a5b11657983d0209e (patch)
treea5dbc40ad20df3c43ca2b542bc33a6061d68559e /intrpvar.h
parent06099f79acc9684bcbd2efbb1efe56ce80c65f08 (diff)
downloadperl-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 'intrpvar.h')
-rw-r--r--intrpvar.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/intrpvar.h b/intrpvar.h
index 2a2913c04b..5a6a4f1827 100644
--- a/intrpvar.h
+++ b/intrpvar.h
@@ -613,15 +613,12 @@ PERLVAR(I, HasMultiCharFold, SV *)
/* utf8 character class swashes */
PERLVAR(I, utf8_alnum, SV *)
PERLVAR(I, utf8_alpha, SV *)
-PERLVAR(I, utf8_blank, SV *)
-PERLVAR(I, utf8_space, SV *)
PERLVAR(I, utf8_graph, SV *)
PERLVAR(I, utf8_digit, SV *)
PERLVAR(I, utf8_upper, SV *)
PERLVAR(I, utf8_lower, SV *)
PERLVAR(I, utf8_print, SV *)
PERLVAR(I, utf8_punct, SV *)
-PERLVAR(I, utf8_xdigit, SV *)
PERLVAR(I, utf8_mark, SV *)
PERLVAR(I, utf8_X_regular_begin, SV *)
PERLVAR(I, utf8_X_extend, SV *)