diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-10-15 23:53:25 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-10-15 23:53:25 +0000 |
commit | acb746053d23ffdeb058c98e7148ae317e2c9b9d (patch) | |
tree | 640d3a6045aadb1f81b31a4b1cef65ec7962aea8 /op.c | |
parent | c8e3bb4c8218524992d6c15718b8c60041841fa3 (diff) | |
download | perl-acb746053d23ffdeb058c98e7148ae317e2c9b9d.tar.gz |
s/last/first/ typo in append_list()
p4raw-id: //depot/perl@1974
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |