In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/6e53b6cab73f4cc348a8366106f0569e65c858f1?hp=e12272fc5eb86388de50059ac74317661bf13377>
- Log ----------------------------------------------------------------- commit 6e53b6cab73f4cc348a8366106f0569e65c858f1 Author: Daniel Dragan <bul...@hotmail.com> Date: Tue Jan 28 02:32:57 2014 -0500 document op_free and op_null from https://rt.perl.org/Public/Bug/Display.html?id=121077#txn-1277679 Tony Cook: s/Neutralized/Neutralizes/ ----------------------------------------------------------------------- Summary of changes: op.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/op.c b/op.c index a31e1af..68d058e 100644 --- a/op.c +++ b/op.c @@ -672,6 +672,14 @@ S_op_destroy(pTHX_ OP *o) /* Destructor */ +/* +=for apidoc Am|void|op_free|OP *o + +Frees an op when it no longer linked in any optree. + +=cut +*/ + void Perl_op_free(pTHX_ OP *o) { @@ -986,6 +994,15 @@ S_find_and_forget_pmops(pTHX_ OP *o) } } +/* +=for apidoc Am|void|op_null|OP *o + +Neutralizes an op when it is no longer needed, but is still linked to from +other ops. + +=cut +*/ + void Perl_op_null(pTHX_ OP *o) { -- Perl5 Master Repository