summaryrefslogtreecommitdiff
path: root/perlvars.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2018-12-19 10:13:27 -0700
committerKarl Williamson <khw@cpan.org>2018-12-25 09:08:10 -0700
commitac7b6cfc962deceb2adc1c179141d8a92384e9aa (patch)
tree168dae27847a2a4858a4241267ed56cbe98ca68f /perlvars.h
parent20fda8317523a13dd63cdafcc2a2209f13d564f8 (diff)
downloadperl-ac7b6cfc962deceb2adc1c179141d8a92384e9aa.tar.gz
Change name of PL_utf8_foldable variable
This variable's name was out-of-date and misleading. It is the name of an inversion list that contains all the code points in the current version of Unicode that participate in any way in a /i type of fold.
Diffstat (limited to 'perlvars.h')
-rw-r--r--perlvars.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/perlvars.h b/perlvars.h
index 4f0b6c07d8..b94bf3385e 100644
--- a/perlvars.h
+++ b/perlvars.h
@@ -284,9 +284,8 @@ PERLVAR(G, SB_invlist, SV *)
PERLVAR(G, SCX_invlist, SV *)
PERLVAR(G, UpperLatin1, SV *) /* Code points 128 - 255 */
-/* List of characters that participate in folds (except marks, etc in
- * multi-char folds) */
-PERLVARI(G, utf8_foldable, SV *, NULL)
+/* List of characters that participate in any fold defined by Unicode */
+PERLVARI(G, in_some_fold, SV *, NULL)
PERLVAR(G, utf8_idcont, SV *)
PERLVAR(G, utf8_idstart, SV *)