diff options
author | Abigail <abigail@abigail.be> | 2016-11-24 15:35:43 +0100 |
---|---|---|
committer | Abigail <abigail@abigail.be> | 2017-01-16 19:18:15 +0100 |
commit | 838ba4df5dc7a6ea548005412fcf40feb86d2078 (patch) | |
tree | c015e6ab11206af0871944f150d599f5584ac234 /ext | |
parent | 4a29ab5ede4282c69f475fe7125e219533fba149 (diff) | |
download | perl-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.pm | 4 |
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(@_); } |