summaryrefslogtreecommitdiff
path: root/regcomp.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-05-27 11:30:55 -0600
committerKarl Williamson <public@khwilliamson.com>2011-07-03 14:05:45 -0600
commitddc1cd802cda73c79a0e7d26d1a4ce38023fe1f2 (patch)
treebc14d90f2e7a0dff26f2d842e8f4d1ca0d96be94 /regcomp.c
parenta25abddce2beacd697f218d5625b22c4e344ee10 (diff)
downloadperl-ddc1cd802cda73c79a0e7d26d1a4ce38023fe1f2.tar.gz
regcomp.c: PL_utf8_foldclosures is a HV
It is not an inversion list, contrary to what this line used to say.
Diffstat (limited to 'regcomp.c')
-rw-r--r--regcomp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regcomp.c b/regcomp.c
index 027c16a526..8475d9dac9 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 */