summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2021-11-18 12:33:33 +0000
committerJames E Keenan <jkeenan@cpan.org>2021-11-18 12:33:33 +0000
commita9d7a07c2ebbfd8ee992f1d27ef4cfbed53085b6 (patch)
tree3a68e7ac774c4b75e035ab04ed656d7215440690
parenta0f0c1762ef2dabc114852f774a3e4c27037f499 (diff)
parent5624cfff8f02788563881f4892a4681a2dd7c308 (diff)
downloadperl-a9d7a07c2ebbfd8ee992f1d27ef4cfbed53085b6.tar.gz
Merge branch 'openstrike-blead' into blead
-rw-r--r--AUTHORS1
-rw-r--r--lib/warnings.pm4
-rw-r--r--regen/warnings.pl4
3 files changed, 5 insertions, 4 deletions
diff --git a/AUTHORS b/AUTHORS
index 995f97fac0..16c22b9239 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1016,6 +1016,7 @@ Pedro Felipe Horrillo Guerra <pancho@pancho.name>
Per Einar Ellefsen <per.einar@skynet.be>
Perlover <perlover@perlover.com>
Petar-Kaleychev <87611976+Petar-Kaleychev@users.noreply.github.com>
+Pete Houston <githubdevteam@openstrike.co.uk>
Pete Peterson <petersonp@genrad.com>
Peter Avalos <peter@theshell.com>
Peter BARABAS
diff --git a/lib/warnings.pm b/lib/warnings.pm
index 07b607524d..414fa803b1 100644
--- a/lib/warnings.pm
+++ b/lib/warnings.pm
@@ -5,7 +5,7 @@
package warnings;
-our $VERSION = "1.55";
+our $VERSION = "1.56";
# Verify that we're called correctly so that warnings will work.
# Can't use Carp, since Carp uses us!
@@ -1141,7 +1141,7 @@ use:
use warnings 'FATAL'; # short form of "use warnings FATAL => 'all';"
However, you should still heed the guidance earlier in this section against
-using C<use warnings FATAL => 'all';>.
+using C<< use warnings FATAL => 'all'; >>.
If you want your program to be compatible with versions of Perl before
5.20, you must use C<< use warnings FATAL => 'all'; >> instead. (In
diff --git a/regen/warnings.pl b/regen/warnings.pl
index da340fa271..201af9e71c 100644
--- a/regen/warnings.pl
+++ b/regen/warnings.pl
@@ -16,7 +16,7 @@
#
# This script is normally invoked from regen.pl.
-$VERSION = '1.55';
+$VERSION = '1.56';
BEGIN {
require './regen/regen_lib.pl';
@@ -1289,7 +1289,7 @@ use:
use warnings 'FATAL'; # short form of "use warnings FATAL => 'all';"
However, you should still heed the guidance earlier in this section against
-using C<use warnings FATAL => 'all';>.
+using C<< use warnings FATAL => 'all'; >>.
If you want your program to be compatible with versions of Perl before
5.20, you must use C<< use warnings FATAL => 'all'; >> instead. (In