From 805c090515922755b0b04e6586ecbf64876f6c94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A9=8D=E4=B8=B9=E5=B0=BC=20Dan=20Jacobson?= Date: Mon, 7 Dec 2020 07:12:50 +0800 Subject: [PATCH] Not that we still don't recommend it Otherwise people will think we are publishing the final OK accepted way! Perhaps also note there is still no OK accepted way. --- regen/warnings.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/regen/warnings.pl b/regen/warnings.pl index 498b93e2854b..c9349f2ed1cd 100644 --- a/regen/warnings.pl +++ b/regen/warnings.pl @@ -1276,7 +1276,8 @@ =head2 Fatal Warnings use: use v5.20; # Perl 5.20 or greater is required for the following - use warnings 'FATAL'; # short form of "use warnings FATAL => 'all';" + use warnings 'FATAL'; # simply a short form of + # "use warnings FATAL => 'all';" therefore still not recommended! 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