diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-05-27 11:30:55 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-07-03 14:05:45 -0600 |
commit | ddc1cd802cda73c79a0e7d26d1a4ce38023fe1f2 (patch) | |
tree | bc14d90f2e7a0dff26f2d842e8f4d1ca0d96be94 /regcomp.c | |
parent | a25abddce2beacd697f218d5625b22c4e344ee10 (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 */ |