diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-02-12 07:07:05 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-02-12 09:50:53 -0800 |
commit | 5d464584654bdb70b228ec3a4222d0fbb4c1d469 (patch) | |
tree | e426f8f4582b2ebea78457a8226f56cdf8068593 /pod/perldebug.pod | |
parent | 28aafdbea124a4050118675c08f116781de5bd1d (diff) | |
download | perl-5d464584654bdb70b228ec3a4222d0fbb4c1d469.tar.gz |
perldebug tweaks
Diffstat (limited to 'pod/perldebug.pod')
-rw-r--r-- | pod/perldebug.pod | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pod/perldebug.pod b/pod/perldebug.pod index 9e67b4df42..56777d2109 100644 --- a/pod/perldebug.pod +++ b/pod/perldebug.pod @@ -9,7 +9,7 @@ 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 . +L<perldebtut>, which is a tutorial introduction to the debugger. =head1 The Perl Debugger @@ -388,7 +388,7 @@ Delete all watch-expressions. =item o X<debugger command, o> -Display all options +Display all options. =item o booloption ... X<debugger command, o> @@ -589,7 +589,7 @@ blessed object, or to a package name. =item M X<debugger command, M> -Displays all loaded modules and their versions +Display all loaded modules and their versions. =item man [manpage] @@ -942,7 +942,7 @@ also from I<camel_flea>, but from line 4. If you execute the C<T> command from inside an active C<use> statement, the backtrace will contain both a C<require> frame and -an C<eval>) frame. +an C<eval> frame. =item Line Listing Format @@ -982,7 +982,7 @@ for incredibly long examples of these. If you have compile-time executable statements (such as code within BEGIN, UNITCHECK and CHECK blocks or C<use> statements), these will I<not> be stopped by debugger, although C<require>s and INIT blocks -will, and compile-time statements can be traced with C<AutoTrace> +will, and compile-time statements can be traced with the C<AutoTrace> option set in C<PERLDB_OPTS>). From your own Perl code, however, you can transfer control back to the debugger using the following statement, which is harmless if the debugger is not running: @@ -1007,7 +1007,7 @@ compile subname> for the same purpose. The debugger probably contains enough configuration hooks that you won't ever have to modify it yourself. You may change the behaviour -of debugger from within the debugger using its C<o> command, from +of the debugger from within the debugger using its C<o> command, from the command line via the C<PERLDB_OPTS> environment variable, and from customization files. @@ -1062,7 +1062,7 @@ As shipped, the only command-line history supplied is a simplistic one that checks for leading exclamation points. However, if you install the Term::ReadKey and Term::ReadLine modules from CPAN (such as Term::ReadLine::Gnu, Term::ReadLine::Perl, ...) you will -have full editing capabilities much like GNU I<readline>(3) provides. +have full editing capabilities much like those GNU I<readline>(3) provides. Look for these in the F<modules/by-module/Term> directory on CPAN. These do not support normal B<vi> command-line editing, however. |