projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
c8e3bb4
)
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
patch
|
blob
|
blame
|
history
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;