summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorAbigail <abigail@abigail.be>2016-11-24 15:35:43 +0100
committerAbigail <abigail@abigail.be>2017-01-16 19:18:15 +0100
commit838ba4df5dc7a6ea548005412fcf40feb86d2078 (patch)
treec015e6ab11206af0871944f150d599f5584ac234 /ext
parent4a29ab5ede4282c69f475fe7125e219533fba149 (diff)
downloadperl-838ba4df5dc7a6ea548005412fcf40feb86d2078.tar.gz
B::OP::terse will go away in Perl 5.28.
Adjusted the deprecation message, and bumped the version of B::Terse.
Diffstat (limited to 'ext')
-rw-r--r--ext/B/B/Terse.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/B/B/Terse.pm b/ext/B/B/Terse.pm
index 8e551c5a62..1749f326a1 100644
--- a/ext/B/B/Terse.pm
+++ b/ext/B/B/Terse.pm
@@ -1,6 +1,6 @@
package B::Terse;
-our $VERSION = '1.06';
+our $VERSION = '1.07';
use strict;
use B qw(class @specialsv_name);
@@ -33,7 +33,7 @@ sub indent {
# Don't use this, at least on OPs in subroutines: it has no way of
# getting to the pad, and will give wrong answers or crash.
sub B::OP::terse {
- carp "B::OP::terse is deprecated; use B::Concise instead";
+ carp "B::OP::terse is deprecated and will go away in Perl 5.28; use B::Concise instead";
B::Concise::b_terse(@_);
}