diff options
author | Stephen P. Potter <spp@ds.net> | 2000-11-06 13:56:43 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-07 00:12:54 +0000 |
commit | 13a2d996abe42696bc5ca08abf08030d440c6148 (patch) | |
tree | 1919c2c419a4d5a14d2cbb83e40e7f0fe6abaddf /pod/perldebtut.pod | |
parent | 9e29e5ff005da001be364f21377fa2a6364952d5 (diff) | |
download | perl-13a2d996abe42696bc5ca08abf08030d440c6148.tar.gz |
Pod updates
Message-Id: <200011062357.SAA18173@spotter.yi.org>
p4raw-id: //depot/perl@7585
Diffstat (limited to 'pod/perldebtut.pod')
-rw-r--r-- | pod/perldebtut.pod | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perldebtut.pod b/pod/perldebtut.pod index 2916897893..ece5848269 100644 --- a/pod/perldebtut.pod +++ b/pod/perldebtut.pod @@ -495,7 +495,7 @@ And a print to show what values we're currently using: DB<1> p $deg, $num f33.3 - + We can put another break point on any line beginning with a colon, we'll use line 17 as that's just as we come out of the subroutine, and we'd like to pause there later on: @@ -538,7 +538,7 @@ it for inspection. In this case though, we simply continue down to line 29: DB<4> c 29 main::f2c(temp:29): return $c; - + And have a look at the return value: DB<5> p $c @@ -616,7 +616,7 @@ the DEBUGGING flag for this one: floating `'$ at 4..2147483647 (checking floating) stclass `EXACTF <pe>' anchored(BOL) minlen 4 Omitting $` $& $' support. - + EXECUTING... Freeing REx: `^pe(a)*rl$' @@ -656,7 +656,7 @@ script from the command-line, try something like this: > perl -d my_cgi.pl -nodebug -Of course 'L<perldoc CGI>' and L<perlfaq9> will tell you more. +Of course L<CGI> and L<perlfaq9> will tell you more. =head1 GUIs |