diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-02-10 10:35:48 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-02-11 13:31:33 -0700 |
commit | 24caacbccae7b938deecdcc3f13dd66c9c6a684e (patch) | |
tree | f08e7f10554bc874251d94d9d5b2684b40c6d706 /sv.c | |
parent | bb0d02ab7b92c63044b4ee5631217dc06cb2e2ca (diff) | |
download | perl-24caacbccae7b938deecdcc3f13dd66c9c6a684e.tar.gz |
regcomp.c: Remove duplicate inversion list
\h and \p{XPosixBlank} contain the same code points, so there is no need
to have both of them.
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -13406,8 +13406,6 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags, PL_L1PosixGraph = sv_dup_inc(proto_perl->IL1PosixGraph, param); PL_PosixGraph = sv_dup_inc(proto_perl->IPosixGraph, param); - PL_HorizSpace = sv_dup_inc(proto_perl->IHorizSpace, param); - PL_L1PosixLower = sv_dup_inc(proto_perl->IL1PosixLower, param); PL_PosixLower = sv_dup_inc(proto_perl->IPosixLower, param); |