This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add crosslinks between perl5db.pl and perldebug-related docs
authorDan Book <grinnz@grinnz.com>
Wed, 7 Oct 2020 00:06:32 +0000 (20:06 -0400)
committerKarl Williamson <khw@cpan.org>
Thu, 8 Oct 2020 12:05:19 +0000 (06:05 -0600)
lib/perl5db.pl
pod/perldebguts.pod
pod/perldebtut.pod
pod/perldebug.pod

index 065fa85..d2e8a7d 100644 (file)
@@ -14,6 +14,8 @@ you invoke a script with C<perl -d>. This documentation tries to outline the
 structure and services provided by C<perl5db.pl>, and to describe how you
 can use them.
 
+See L<perldebug> for an overview of how to use the debugger.
+
 =head1 GENERAL NOTES
 
 The debugger can look pretty forbidding to many Perl programmers. There are
@@ -529,7 +531,7 @@ BEGIN {
 use vars qw($VERSION $header);
 
 # bump to X.XX in blead, only use X.XX_XX in maint
-$VERSION = '1.58';
+$VERSION = '1.59';
 
 $header = "perl5db.pl version $VERSION";
 
index 2260213..f965b1f 100644 (file)
@@ -1089,8 +1089,9 @@ never touched.
 =head1 SEE ALSO
 
 L<perldebug>,
+L<perl5db.pl>,
 L<perlguts>,
-L<perlrun>
+L<perlrun>,
 L<re>,
 and
 L<Devel::DProf>.
index 2558ed2..83e524f 100644 (file)
@@ -715,6 +715,7 @@ place to go), and of course, experiment.
 
 L<perldebug>, 
 L<perldebguts>, 
+L<perl5db.pl>,
 L<perldiag>,
 L<perlrun>
 
index b7ec3ee..1274e9d 100644 (file)
@@ -14,6 +14,9 @@ L<perldebtut>, which is a tutorial introduction to the debugger.
 If you're looking for the nitty gritty details of how the debugger is
 I<implemented>, you may prefer to read L<perldebguts>.
 
+For in-depth technical usage details, see L<perl5db.pl>, the documentation
+of the debugger itself.
+
 =head1 The Perl Debugger
 
 If you invoke Perl with the B<-d> switch, your script runs under the
@@ -1206,6 +1209,7 @@ You do have C<use strict> and C<use warnings> enabled, don't you?
 
 L<perldebtut>,
 L<perldebguts>,
+L<perl5db.pl>,
 L<re>,
 L<DB>,
 L<Devel::NYTProf>,