From ac7b6cfc962deceb2adc1c179141d8a92384e9aa Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Wed, 19 Dec 2018 10:13:27 -0700 Subject: 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. --- perlvars.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'perlvars.h') 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 *) -- cgit v1.2.1