]> git.vpit.fr Git - perl/modules/autovivification.git/commitdiff
Clarify how 'strict' and 'warn' currently work rt122956
authorVincent Pit <perl@profvince.com>
Sat, 4 Nov 2017 15:13:47 +0000 (16:13 +0100)
committerVincent Pit <perl@profvince.com>
Sat, 4 Nov 2017 15:13:47 +0000 (16:13 +0100)
This fixes [RT #122956].

lib/autovivification.pm

index 8b70a75ee51dbbc8c71c6879cd826a6efdfcb8de..1e4e06b3ad929d86762ea5fb2881f661c27a9a4d 100644 (file)
@@ -57,8 +57,8 @@ BEGIN {
 
     no autovivification; # defaults to qw<fetch exists delete>
     no autovivification qw<fetch store exists delete>;
-    no autovivification 'warn';
-    no autovivification 'strict';
+    no autovivification warn   => @categories;
+    no autovivification strict => @categories;
 
 Magically called when C<no autovivification @opts> is encountered.
 Enables the features given in C<@opts>, which can be :
@@ -125,13 +125,19 @@ In the example, this would require C<$arrayref> (resp. C<$hashref>) to already b
 
 C<'warn'>
 
-Emits a warning when an autovivification is avoided.
+Emits a warning when an autovivification is avoided for the categories specified in C<@opts>.
+
+Note that C<no autovivification 'warn'> currently does nothing by itself, in particular it does not make the default categories warn.
+This behaviour may change in a future version of this pragma.
 
 =item *
 
 C<'strict'>
 
-Throws an exception when an autovivification is avoided.
+Throws an exception when an autovivification is avoided for the categories specified in C<@opts>.
+
+Note that C<no autovivification 'strict'> currently does nothing by itself, in particular it does not make the default categories die.
+This behaviour may change in a future version of this pragma.
 
 =back