diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-02 07:58:35 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-02 07:58:35 +0000 |
commit | bee32ff8f5fb3bbd86101dcb039642bf5fde9142 (patch) | |
tree | 05d1cb5d5791c61008d6456c106ebfb7e0a668c6 /pod/perldebug.pod | |
parent | db376a245d40f9f81e37632708a9ad2cfc67ef6a (diff) | |
download | perl-bee32ff8f5fb3bbd86101dcb039642bf5fde9142.tar.gz |
fixes for switching files in the debugger (from Ilya Zakharevich)
p4raw-id: //depot/perl@4955
Diffstat (limited to 'pod/perldebug.pod')
-rw-r--r-- | pod/perldebug.pod | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pod/perldebug.pod b/pod/perldebug.pod index 56997322d6..65a07e21fa 100644 --- a/pod/perldebug.pod +++ b/pod/perldebug.pod @@ -174,6 +174,12 @@ Switch to viewing a different file or eval statement. If C<filename> is not a full filename as found in values of %INC, it is considered as a regexp. +C<eval>ed strings (when accessible) are considered to be filenames: +C<f (eval 7)> and C<f eval 7\b> access the body of the 7th C<eval>ed string +(in the order of execution). The bodies of currently executed C<eval> +and of C<eval>ed strings which define subroutines are saved, thus are +accessible by this mechanism. + =item /pattern/ Search forwards for pattern; final / is optional. |