From: Vincent Pit Date: Fri, 11 Nov 2011 18:18:18 +0000 (+0100) Subject: Make sure the POD headings are linkable X-Git-Tag: v0.11~15 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fautovivification.git;a=commitdiff_plain;h=e1d2632ef0b4e3ee3e418c12903f81b5d7b55b1a Make sure the POD headings are linkable --- diff --git a/lib/autovivification.pm b/lib/autovivification.pm index 5eabf25..7f6adc5 100644 --- a/lib/autovivification.pm +++ b/lib/autovivification.pm @@ -53,7 +53,12 @@ BEGIN { =head1 METHODS -=head2 C +=head2 C + + no autovivification; # defaults to qw + no autovivification qw; + no autovivification 'warn'; + no autovivification 'strict'; Magically called when C is encountered. Enables the features given in C<@opts>, which can be : @@ -155,7 +160,10 @@ sub unimport { (); } -=head2 C +=head2 C + + use autovivification; # default Perl behaviour + use autovivification qw; Magically called when C is encountered. Disables the features given in C<@opts>, which can be the same as for L.