s/last/first/ typo in append_list()
Gurusamy Sarathy [Thu, 15 Oct 1998 23:53:25 +0000 (23:53 +0000)]
p4raw-id: //depot/perl@1974

op.c

diff --git a/op.c b/op.c
index eb4856e..0ad5650 100644 (file)
--- a/op.c
+++ b/op.c
@@ -1917,7 +1917,7 @@ append_list(I32 type, LISTOP *first, LISTOP *last)
     first->op_last = last->op_last;
     first->op_children += last->op_children;
     if (first->op_children)
-       last->op_flags |= OPf_KIDS;
+       first->op_flags |= OPf_KIDS;
 
     Safefree(last);
     return (OP*)first;