diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-02-01 17:17:14 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-02-02 16:31:22 -0700 |
commit | 1bd9dc9102c3f4c19980ec24a2e7a20f03921636 (patch) | |
tree | a1d987d1c1361e73d22c1def09e384714424befc /sv.c | |
parent | 11e4b509a05a8d9a4df1a66eb2910eb15ae36efd (diff) | |
download | perl-1bd9dc9102c3f4c19980ec24a2e7a20f03921636.tar.gz |
Add PL_foldable - a list of chars that participate in folds
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -13113,6 +13113,7 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags, PL_utf8_tofold = sv_dup_inc(proto_perl->Iutf8_tofold, param); PL_utf8_idstart = sv_dup_inc(proto_perl->Iutf8_idstart, param); PL_utf8_idcont = sv_dup_inc(proto_perl->Iutf8_idcont, param); + PL_utf8_foldable = sv_dup_inc(proto_perl->Iutf8_foldable, param); /* Did the locale setup indicate UTF-8? */ PL_utf8locale = proto_perl->Iutf8locale; |