diff options
author | Randy J. Ray <rjray@redhat.com> | 2000-08-07 12:12:25 -0700 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-08 17:33:34 +0000 |
commit | 70c94a1962e4ec78d69c2158c32b643ceb04ff36 (patch) | |
tree | d3737e5c0f29632ad591dd904f9ef607a7858111 /pod/perlrun.pod | |
parent | 9baa0206214393e14c90c1119dbe3c122969f510 (diff) | |
download | perl-70c94a1962e4ec78d69c2158c32b643ceb04ff36.tar.gz |
Patch against 5.6.0 to allow "-d:Module=arg,arg,arg"
Message-Id: <200008080212.TAA12784@tzimisce.soma.redhat.com>
p4raw-id: //depot/perl@6547
Diffstat (limited to 'pod/perlrun.pod')
-rw-r--r-- | pod/perlrun.pod | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/pod/perlrun.pod b/pod/perlrun.pod index e105b00a7a..98ab39c855 100644 --- a/pod/perlrun.pod +++ b/pod/perlrun.pod @@ -284,11 +284,15 @@ be skipped. runs the program under the Perl debugger. See L<perldebug>. -=item B<-d:>I<foo> +=item B<-d:>I<foo[=bar,baz]> runs the program under the control of a debugging, profiling, or tracing module installed as Devel::foo. E.g., B<-d:DProf> executes -the program using the Devel::DProf profiler. See L<perldebug>. +the program using the Devel::DProf profiler. As with the B<-M> +flag, options may be passed to the Devel::foo package where they +will be received and interpreted by the Devel::foo::import routine. +The comma-separated list of options must follow a C<=> character. +See L<perldebug>. =item B<-D>I<letters> |