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 /embedvar.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 'embedvar.h')
-rw-r--r-- | embedvar.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/embedvar.h b/embedvar.h index 2349c8c978..06d4e181a0 100644 --- a/embedvar.h +++ b/embedvar.h @@ -40,7 +40,6 @@ # define vTHX PERL_GET_INTERP # endif -#define PL_ASCII (vTHX->IASCII) #define PL_AboveLatin1 (vTHX->IAboveLatin1) #define PL_Argv (vTHX->IArgv) #define PL_Cmd (vTHX->ICmd) |