summaryrefslogtreecommitdiff
path: root/ext/B
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2018-09-23 17:20:32 -0400
committerJames E Keenan <jkeenan@cpan.org>2018-09-25 08:31:45 -0400
commit903b1101f7c2c55545e6cfd3eb5dfd564e1befd2 (patch)
tree5b08c63b58fd6b80777676a819d9d6be651ad69d /ext/B
parent2dcd19f068f5fdcbcce36cc7a4ef94c53d3a47f3 (diff)
downloadperl-903b1101f7c2c55545e6cfd3eb5dfd564e1befd2.tar.gz
Remove B::Debug from core distribution.
It continues to exist as a CPAN distribution. Increment $B::Terse::VERSION and $B::Concise::VERSION due to changes in POD. Remove internal links to B::Debug within two .pod files. For: RT #130410
Diffstat (limited to 'ext/B')
-rw-r--r--ext/B/B/Concise.pm4
-rw-r--r--ext/B/B/Terse.pm4
2 files changed, 4 insertions, 4 deletions
diff --git a/ext/B/B/Concise.pm b/ext/B/B/Concise.pm
index 9032e9b082..729fcd95f4 100644
--- a/ext/B/B/Concise.pm
+++ b/ext/B/B/Concise.pm
@@ -14,7 +14,7 @@ use warnings; # uses #3 and #4, since warnings uses Carp
use Exporter (); # use #5
-our $VERSION = "1.003";
+our $VERSION = "1.004";
our @ISA = qw(Exporter);
our @EXPORT_OK = qw( set_style set_style_standard add_callback
concise_subref concise_cv concise_main
@@ -1284,7 +1284,7 @@ This is mainly a joke.
=item B<-debug>
-Use formatting conventions reminiscent of B<B::Debug>; these aren't
+Use formatting conventions reminiscent of CPAN module B<B::Debug>; these aren't
very concise at all.
=item B<-env>
diff --git a/ext/B/B/Terse.pm b/ext/B/B/Terse.pm
index 681112e904..4401073f25 100644
--- a/ext/B/B/Terse.pm
+++ b/ext/B/B/Terse.pm
@@ -1,6 +1,6 @@
package B::Terse;
-our $VERSION = '1.08';
+our $VERSION = '1.09';
use strict;
use B qw(class @specialsv_name);
@@ -73,7 +73,7 @@ B::Terse - Walk Perl syntax tree, printing terse info about ops
=head1 DESCRIPTION
This module prints the contents of the parse tree, but without as much
-information as L<B::Debug>. For comparison, C<print "Hello, world.">
+information as CPAN module B::Debug. For comparison, C<print "Hello, world.">
produced 96 lines of output from B::Debug, but only 6 from B::Terse.
This module is useful for people who are writing their own back end,