Bind op fix.
authorM. J. T. Guy <mjtg@cus.cam.ac.uk>
Mon, 17 Jul 2000 20:04:56 +0000 (21:04 +0100)
committerJarkko Hietaniemi <jhi@iki.fi>
Mon, 24 Jul 2000 17:43:17 +0000 (17:43 +0000)
Subject: Re: [PATCH] [ID 20000716.011] strangeness with split($_ =~ m/.../)
Message-Id: <E13EGCG-0006oO-00@libra.cus.cam.ac.uk>

p4raw-id: //depot/perl@6431

op.c

diff --git a/op.c b/op.c
index ec43cce..14c5573 100644 (file)
--- a/op.c
+++ b/op.c
@@ -1983,9 +1983,10 @@ Perl_bind_match(pTHX_ I32 type, OP *left, OP *right)
              desc, sample, sample);
     }
 
-    if (right->op_type == OP_MATCH ||
+    if (!(right->op_flags & OPf_STACKED) &&
+       (right->op_type == OP_MATCH ||
        right->op_type == OP_SUBST ||
-       right->op_type == OP_TRANS) {
+       right->op_type == OP_TRANS)) {
        right->op_flags |= OPf_STACKED;
        if (right->op_type != OP_MATCH)
            left = mod(left, right->op_type);
@@ -6199,7 +6200,7 @@ Perl_ck_split(pTHX_ OP *o)
        cLISTOPo->op_last = kid; /* There was only one element previously */
     }
 
-    if (kid->op_type != OP_MATCH) {
+    if (kid->op_type != OP_MATCH || kid->op_flags & OPf_STACKED) {
        OP *sibl = kid->op_sibling;
        kid->op_sibling = 0;
        kid = pmruntime( newPMOP(OP_MATCH, OPf_SPECIAL), kid, Nullop);