summaryrefslogtreecommitdiff
path: root/lib/perl5db.pl
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2013-05-24 20:15:10 +0200
committerRicardo Signes <rjbs@cpan.org>2013-05-26 16:03:36 -0400
commit817dbc123f02d8a5d6a2fd88803f271a560de9f4 (patch)
tree0b05bf12c16f5d518886215578c6ea1bf708c730 /lib/perl5db.pl
parent0cbb108a776367b0d2ef559bd342ce89a5fb5252 (diff)
downloadperl-817dbc123f02d8a5d6a2fd88803f271a560de9f4.tar.gz
Fix the man/perldoc/doc command in the debugger.
This was accidentally broken by commit c7b0c61d36b24841. (cherry picked from commit b019bbd28397aba60a9673fa89dded4500c6c783)
Diffstat (limited to 'lib/perl5db.pl')
-rw-r--r--lib/perl5db.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/perl5db.pl b/lib/perl5db.pl
index 85a5ef4eb3..75a16af0a3 100644
--- a/lib/perl5db.pl
+++ b/lib/perl5db.pl
@@ -3695,7 +3695,7 @@ sub _handle_doc_command {
# man, perldoc, doc - show manual pages.
if (my ($man_page)
= $DB::cmd =~ /\A(?:man|(?:perl)?doc)\b(?:\s+([^(]*))?\z/) {
- runman($man_page);
+ DB::runman($man_page);
next CMD;
}