diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-08-15 10:59:01 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-09-24 11:36:16 -0600 |
commit | 01822b745cf22c5f129312061022b109fc43bf61 (patch) | |
tree | db411a54c7ad632570e9a8c635608b3d0b1181c1 /intrpvar.h | |
parent | 81c80d3d62803334acb37662199774c9bd6ccf5c (diff) | |
download | perl-01822b745cf22c5f129312061022b109fc43bf61.tar.gz |
Remove PL_ASCII; use existing array slots for it
PL_ASCII contains an inversion list to match the ASCII-range code
points. It is unusable outside the core regular expression code because
all the functions that manipulate inversion lists are defined only
within a few core files. Therefore no outside code should be depending
on it.
It turns out that there are arrays of similar inversion lists, and these
all have slots which should have this inversion list in them. This
commit fills them, instead of using PL_ASCII.
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/intrpvar.h b/intrpvar.h index 9cfe2c639d..3a8f959b3b 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -576,7 +576,6 @@ PERLVAR(I, numeric_radix_sv, SV *) /* The radix separator if not '.' */ #endif /* !USE_LOCALE_NUMERIC */ /* Unicode inversion lists */ -PERLVAR(I, ASCII, SV *) PERLVAR(I, Latin1, SV *) PERLVAR(I, UpperLatin1, SV *) /* Code points 128 - 255 */ PERLVAR(I, AboveLatin1, SV *) |