diff options
author | Richard Foley <richard.foley@rfi.net> | 2002-02-25 14:47:03 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-02-25 14:30:28 +0000 |
commit | 492652be590915fcb2621eeceaf000a1c070956a (patch) | |
tree | 79730601f2dc72b288ce07b3c4dfa305dc452a41 /pod/perldebguts.pod | |
parent | dad0832b48bc3fb5c9ac55cc93b1737be98d5db8 (diff) | |
download | perl-492652be590915fcb2621eeceaf000a1c070956a.tar.gz |
consistent commands for perl5db.pl etc.
Message-ID: <16fJgP-1mbVeSC@fwd04.sul.t-online.com>
p4raw-id: //depot/perl@14865
Diffstat (limited to 'pod/perldebguts.pod')
-rw-r--r-- | pod/perldebguts.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perldebguts.pod b/pod/perldebguts.pod index d14478155f..f507ac8997 100644 --- a/pod/perldebguts.pod +++ b/pod/perldebguts.pod @@ -151,7 +151,7 @@ after the debugger completes its own initialization.) After the rc file is read, the debugger reads the PERLDB_OPTS environment variable and uses it to set debugger options. The contents of this variable are treated as if they were the argument -of an C<O ...> debugger command (q.v. in L<perldebug/Options>). +of an C<o ...> debugger command (q.v. in L<perldebug/Options>). =head3 Debugger internal variables In addition to the file and subroutine-related variables mentioned above, @@ -240,9 +240,9 @@ information. For example, contrast this expression trace: main::bar((eval 170):2): 42 -with this one, once the C<O>ption C<frame=2> has been set: +with this one, once the C<o>ption C<frame=2> has been set: - DB<4> O f=2 + DB<4> o f=2 frame = '2' DB<5> t print foo() * bar() 3: foo() * bar() |