From ddc1cd802cda73c79a0e7d26d1a4ce38023fe1f2 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Fri, 27 May 2011 11:30:55 -0600 Subject: [PATCH] regcomp.c: PL_utf8_foldclosures is a HV It is not an inversion list, contrary to what this line used to say. --- regcomp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regcomp.c b/regcomp.c index 027c16a..8475d9d 100644 --- a/regcomp.c +++ b/regcomp.c @@ -10059,7 +10059,7 @@ parseit: * compilation of Perl itself before the Unicode tables are * generated) */ if (invlist_len(PL_utf8_foldable) == 0) { - PL_utf8_foldclosures = _new_invlist(0); + PL_utf8_foldclosures = newHV(); } else { /* If the folds haven't been read in, call a fold function * to force that */ -- 2.7.4