summaryrefslogtreecommitdiff
path: root/pod/perldiag.pod
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-04-10 15:03:10 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-04-10 15:03:10 +0000
commitccafdc969fe8361303a07e7576d1af4e3e389a76 (patch)
treec3293fc91f18c7cbb117b22c48f515a1ee701193 /pod/perldiag.pod
parent79e63f36d616e2a045841795af8be1361f55c9ed (diff)
downloadperl-ccafdc969fe8361303a07e7576d1af4e3e389a76.tar.gz
Fix [perl #34892] Segfault on &DB::sub declared but not defined
p4raw-id: //depot/perl@24215
Diffstat (limited to 'pod/perldiag.pod')
-rw-r--r--pod/perldiag.pod17
1 files changed, 8 insertions, 9 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod
index 675ac5278c..de1d496dd2 100644
--- a/pod/perldiag.pod
+++ b/pod/perldiag.pod
@@ -2428,22 +2428,21 @@ doesn't know where you want to pipe the output from this command.
=item No DB::DB routine defined
(F) The currently executing code was compiled with the B<-d> switch, but
-for some reason the perl5db.pl file (or some facsimile thereof) didn't
-define a routine to be called at the beginning of each statement. Which
-is odd, because the file should have been required automatically, and
-should have blown up the require if it didn't parse right.
+for some reason the current debugger (e.g. F<perl5db.pl> or a C<Devel::>
+module) didn't define a routine to be called at the beginning of each
+statement.
=item No dbm on this machine
(P) This is counted as an internal error, because every machine should
supply dbm nowadays, because Perl comes with SDBM. See L<SDBM_File>.
-=item No DBsub routine
+=item No DB::sub routine defined
-(F) The currently executing code was compiled with the B<-d> switch,
-but for some reason the perl5db.pl file (or some facsimile thereof)
-didn't define a DB::sub routine to be called at the beginning of each
-ordinary subroutine call.
+(F) The currently executing code was compiled with the B<-d> switch, but
+for some reason the current debugger (e.g. F<perl5db.pl> or a C<Devel::>
+module) didn't define a C<DB::sub> routine to be called at the beginning
+of each ordinary subroutine call.
=item No B<-e> allowed in setuid scripts