summaryrefslogtreecommitdiff
path: root/intrpvar.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-07-23 10:01:29 -0600
committerKarl Williamson <public@khwilliamson.com>2013-09-24 11:36:12 -0600
commit892d82595257ad4946d399f004a293a79f6ab611 (patch)
tree4e8841914093e2fb1200685aff68a7495c2c20a8 /intrpvar.h
parentecfdcf399ee052379b6d0552e332d8503d554233 (diff)
downloadperl-892d82595257ad4946d399f004a293a79f6ab611.tar.gz
Add inversion list for U+80 - U+FF
This is the upper half of the Latin1 range. This simplifies some code very slightly, but will be of use in future commits.
Diffstat (limited to 'intrpvar.h')
-rw-r--r--intrpvar.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/intrpvar.h b/intrpvar.h
index f4efc329b1..9cfe2c639d 100644
--- a/intrpvar.h
+++ b/intrpvar.h
@@ -578,6 +578,7 @@ PERLVAR(I, numeric_radix_sv, SV *) /* The radix separator if not '.' */
/* Unicode inversion lists */
PERLVAR(I, ASCII, SV *)
PERLVAR(I, Latin1, SV *)
+PERLVAR(I, UpperLatin1, SV *) /* Code points 128 - 255 */
PERLVAR(I, AboveLatin1, SV *)
PERLVAR(I, NonL1NonFinalFold, SV *)