Message-ID: <
20010811163104.Q526@lustre.dyn.wiw.org>
p4raw-id: //depot/perl@11634
SvPV_nolen(sv));
}
}
+ else if (o->op_next->op_type == OP_READLINE
+ && 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;
+ op_null(o->op_next->op_next);
+ }
o->op_seq = PL_op_seqmax++;
break;