summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-02-17 13:47:13 -0700
committerKarl Williamson <public@khwilliamson.com>2013-08-29 09:55:52 -0600
commitf4cd282cd75f0333d0ce591c83812eed609d5283 (patch)
tree5b2e6e4c08b6fe67d75a9d93dea211e71988c3ca /pp.c
parent94bb8c36d9e11dd4825e43d06f0832f01a7e5045 (diff)
downloadperl-f4cd282cd75f0333d0ce591c83812eed609d5283.tar.gz
Remove EBCDIC remappings
Now that the Unicode tables are stored in native format, we shouldn't be doing remapping. Note that this assumes that the Latin1 casing tables are stored in native order; not all of this has been done yet.
Diffstat (limited to 'pp.c')
-rw-r--r--pp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp.c b/pp.c
index cd50626696..111012d3a0 100644
--- a/pp.c
+++ b/pp.c
@@ -4244,7 +4244,7 @@ PP(pp_fc)
for (; s < send; s++) {
STRLEN ulen;
UV fc = _to_uni_fold_flags(*s, tmpbuf, &ulen, flags);
- if UNI_IS_INVARIANT(fc) {
+ if NATIVE_IS_INVARIANT(fc) {
if (full_folding
&& *s == LATIN_SMALL_LETTER_SHARP_S)
{