In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/c24d0595c9166aecac9842f4195f1d967468fd5a?hp=6e72ca7018e96d54b93ca8c41f8033a1f9c2e874>
- Log ----------------------------------------------------------------- commit c24d0595c9166aecac9842f4195f1d967468fd5a Author: David Mitchell <[email protected]> Date: Wed Mar 2 17:29:31 2016 +0000 document args of Perl_do_sv_dump() ----------------------------------------------------------------------- Summary of changes: dump.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/dump.c b/dump.c index bc2776a..dcc00f5 100644 --- a/dump.c +++ b/dump.c @@ -1423,6 +1423,16 @@ const struct flag_to_name regexp_core_intflags_names[] = { {PREGf_ANCH_GPOS, "ANCH_GPOS,"}, }; +/* Perl_do_sv_dump(): + * + * level: amount to indent the output + * sv: the object to dump + * nest: the current level of recursion + * maxnest: the maximum allowed level of recursion + * dumpops: if true, also dump the ops associated with a CV + * pvlim: limit on the length of any strings that are output + * */ + void Perl_do_sv_dump(pTHX_ I32 level, PerlIO *file, SV *sv, I32 nest, I32 maxnest, bool dumpops, STRLEN pvlim) { -- Perl5 Master Repository
