diff options
author | James E Keenan <jkeenan@cpan.org> | 2017-07-25 06:44:52 -0400 |
---|---|---|
committer | James E Keenan <jkeenan@cpan.org> | 2017-07-25 07:18:22 -0400 |
commit | ecfa068aa0dab432bfdef423766b665be127ef77 (patch) | |
tree | dc28cd966cbafdb7f26636d2342bbc31fe3b437d /pod | |
parent | 0397beb0d12565d70e168bfea7376e2612a6748a (diff) | |
download | perl-ecfa068aa0dab432bfdef423766b665be127ef77.tar.gz |
Remove B::Debug from core distribution.
It continues to exist as a CPAN distribution.
Increment $B::Terse::VERSION due to change in POD.
Remove internal links to B::Debug within two .pod files.
For: RT #130410
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlhacktips.pod | 2 | ||||
-rw-r--r-- | pod/perlinterp.pod | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlhacktips.pod b/pod/perlhacktips.pod index d80c69e3ae..cbf84cbb07 100644 --- a/pod/perlhacktips.pod +++ b/pod/perlhacktips.pod @@ -965,7 +965,7 @@ subroutine: We can also dump out this op: the current op is always stored in C<PL_op>, and we can dump it with C<Perl_op_dump>. This'll give us -similar output to L<B::Debug|B::Debug>. +similar output to CPAN module B::Debug. (gdb) print Perl_op_dump(PL_op) { diff --git a/pod/perlinterp.pod b/pod/perlinterp.pod index e1af33370a..b90c789b1d 100644 --- a/pod/perlinterp.pod +++ b/pod/perlinterp.pod @@ -435,7 +435,7 @@ operations in. The easiest way to examine the op tree is to stop Perl after it has finished parsing, and get it to dump out the tree. This is exactly what the compiler backends L<B::Terse|B::Terse>, L<B::Concise|B::Concise> -and L<B::Debug|B::Debug> do. +and CPAN module B::Debug do. Let's have a look at how Perl sees C<$a = $b + $c>: |