summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2012-02-10 10:35:48 -0700
committerKarl Williamson <public@khwilliamson.com>2012-02-11 13:31:33 -0700
commit24caacbccae7b938deecdcc3f13dd66c9c6a684e (patch)
treef08e7f10554bc874251d94d9d5b2684b40c6d706 /sv.c
parentbb0d02ab7b92c63044b4ee5631217dc06cb2e2ca (diff)
downloadperl-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.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/sv.c b/sv.c
index 068be55607..f02627bf6e 100644
--- a/sv.c
+++ b/sv.c
@@ -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);