Change 12047 by ams@ams-lustre on 2001/09/17 11:21:40

        Subject: Re: [PATCH] turn $a.=<F> into an RCATLINE
        From: Abhijit Menon-Sen <[EMAIL PROTECTED]>
        Date: Mon, 17 Sep 2001 17:44:12 +0530
        Message-Id: <[EMAIL PROTECTED]>

Affected files ...

... //depot/perl/op.c#445 edit

Differences ...

==== //depot/perl/op.c#445 (text) ====
Index: perl/op.c
--- perl/op.c.~1~       Mon Sep 17 05:30:05 2001
+++ perl/op.c   Mon Sep 17 05:30:05 2001
@@ -6940,10 +6940,12 @@
                    && o->op_next->op_next->op_type == OP_CONCAT
                    && (o->op_next->op_next->op_flags & OPf_STACKED))
            {
-               /* Turn "$a .= <FH>" into an OP_RCATLINE. AMS 20010811 */
-               o->op_next->op_type   = OP_RCATLINE;
-               o->op_next->op_flags |= OPf_STACKED;
+               /* Turn "$a .= <FH>" into an OP_RCATLINE. AMS 20010917 */
+               o->op_type   = OP_RCATLINE;
+               o->op_flags |= OPf_STACKED;
+               o->op_ppaddr = PL_ppaddr[OP_RCATLINE];
                op_null(o->op_next->op_next);
+               op_null(o->op_next);
            }
 
            o->op_seq = PL_op_seqmax++;
End of Patch.

Reply via email to