X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FVariable%2FMagic.pm;h=05fdde14f6d39109792e5b267b475c7dbd24d934;hb=d40ee99380faf573a5d2983fbd730600266244e7;hp=bebfc984ef21946ca609334f5f4e2fc31f921239;hpb=6c7c2526186bcb3bb40a9a337d77af313f5b2a4e;p=perl%2Fmodules%2FVariable-Magic.git diff --git a/lib/Variable/Magic.pm b/lib/Variable/Magic.pm index bebfc98..05fdde1 100644 --- a/lib/Variable/Magic.pm +++ b/lib/Variable/Magic.pm @@ -13,13 +13,13 @@ Variable::Magic - Associate user-defined magic to variables from Perl. =head1 VERSION -Version 0.41 +Version 0.42 =cut our $VERSION; BEGIN { - $VERSION = '0.41'; + $VERSION = '0.42'; } =head1 SYNOPSIS @@ -392,6 +392,10 @@ True for perls that call 'clear' magic when undefining magical arrays. True for perls that don't call 'len' magic when taking the C of a magical scalar. +=head2 C + +True for perls that call 'get' magic for operations on globs. + =head2 C The perl patchlevel this module was built with, or C<0> for non-debugging perls. @@ -569,6 +573,7 @@ our %EXPORT_TAGS = ( qw/VMG_COMPAT_ARRAY_UNSHIFT_NOLEN_VOID/, qw/VMG_COMPAT_ARRAY_UNDEF_CLEAR/, qw/VMG_COMPAT_SCALAR_LENGTH_NOLEN/, + qw/VMG_COMPAT_GLOB_GET/, qw/VMG_PERL_PATCHLEVEL/, qw/VMG_THREADSAFE VMG_FORKSAFE/, qw/VMG_OP_INFO_NAME VMG_OP_INFO_OBJECT/