diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-09-27 15:52:18 +0200 |
---|---|---|
committer | hv <hv@crypt.org> | 2002-09-29 11:59:28 +0000 |
commit | 5ddc4af4d75ced82687c55523359d34e747e49d0 (patch) | |
tree | f6fdc75df294727ce257b834a9ecb5b413cecfc1 /lib/Attribute | |
parent | 917244cea8a572c7a8e96f03f088f4ff0317bc7e (diff) | |
download | perl-5ddc4af4d75ced82687c55523359d34e747e49d0.tar.gz |
Re: [perl #17587] Attribute::Handlers and Config in 5.9.0
Message-Id: <20020927135218.3a20dd68.rgarciasuarez@free.fr>
p4raw-id: //depot/perl@17940
Diffstat (limited to 'lib/Attribute')
-rw-r--r-- | lib/Attribute/Handlers.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Attribute/Handlers.pm b/lib/Attribute/Handlers.pm index 4199d9db01..60b0aa1bca 100644 --- a/lib/Attribute/Handlers.pm +++ b/lib/Attribute/Handlers.pm @@ -2,7 +2,7 @@ package Attribute::Handlers; use 5.006; use Carp; use warnings; -$VERSION = '0.77'; +$VERSION = '0.78'; # $DB::single=1; my %symcache; @@ -108,7 +108,7 @@ sub AUTOLOAD { sub DESTROY {} -my $builtin = qr/lvalue|method|locked/; +my $builtin = qr/lvalue|method|locked|unique|shared/; sub _gen_handler_AH_() { return sub { |