diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-09 11:11:59 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-09 11:11:59 +0000 |
commit | 3fbd655246e7129e7a25b47b134d3427eecbe312 (patch) | |
tree | 8d99f590961a0f37e740fc319f52af257d46acd5 /pod/perldebug.pod | |
parent | 63385af5313ec91646b850e34176f5ed8b8155f6 (diff) | |
download | perl-3fbd655246e7129e7a25b47b134d3427eecbe312.tar.gz |
provide support for deleting actions etc. (from Ronald J Kimball
<rjk@linguist.dartmouth.edu>)
p4raw-id: //depot/perl@5624
Diffstat (limited to 'pod/perldebug.pod')
-rw-r--r-- | pod/perldebug.pod | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/pod/perldebug.pod b/pod/perldebug.pod index 4afb855955..fe2418457e 100644 --- a/pod/perldebug.pod +++ b/pod/perldebug.pod @@ -286,7 +286,8 @@ Delete all installed breakpoints. =item a [line] command -Set an action to be done before the line is executed. +Set an action to be done before the line is executed. If line is +omitted, sets an action on the line that is about to be executed. The sequence of steps taken by the debugger is 1. check for a breakpoint at this line @@ -300,6 +301,11 @@ For example, this will print out $foo every time line a 53 print "DB FOUND $foo\n" +=item a [line] + +Delete an action at the specified line. If line is omitted, deletes +the action on the line that is about to be executed. + =item A Delete all installed actions. |