make "lstat FH" croak
[p5sagit/p5-mst-13.2.git] / pod / perldebug.pod
index 7997a38..b711094 100644 (file)
@@ -6,6 +6,10 @@ perldebug - Perl debugging
 
 First of all, have you tried using the B<-w> switch?
 
+
+If you're new to the Perl debugger, you may prefer to read
+L<perldebtut>, which is a tutorial introduction to the debugger .
+
 =head1 The Perl Debugger
 
 If you invoke Perl with the B<-d> switch, your script runs under the
@@ -674,7 +678,7 @@ always spell them out in full for legibility and future compatibility.
 
 Other examples include
 
-    $ PERLDB_OPTS="NonStop frame=2" perl -d myprogram
+    $ PERLDB_OPTS="NonStop LineInfo=listing frame=2" perl -d myprogram
 
 which runs script non-interactively, printing info on each entry
 into a subroutine and each executed line into the file named F<listing>.
@@ -940,10 +944,11 @@ See L<perldebguts/"Debugging Perl memory usage"> for the details.
 
 You did try the B<-w> switch, didn't you?
 
+L<perldebtut>,
 L<perldebguts>,
 L<re>,
 L<DB>,
-L<Devel::Dprof>,
+L<Devel::DProf>,
 L<dprofpp>,
 L<Dumpvalue>,
 and