From: Jarkko Hietaniemi Date: Thu, 13 Jun 2002 12:51:14 +0000 (+0000) Subject: Also perlsub needs to be slightly more upbeat about attributes. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a0ae32d368a84fe6385f561117e356b323fe45b7;p=p5sagit%2Fp5-mst-13.2.git Also perlsub needs to be slightly more upbeat about attributes. p4raw-id: //depot/perl@17220 --- diff --git a/pod/perlsub.pod b/pod/perlsub.pod index b92c63a..ce3b120 100644 --- a/pod/perlsub.pod +++ b/pod/perlsub.pod @@ -220,9 +220,9 @@ Synopsis: my @oof = @bar; # declare @oof lexical, and init it my $x : Foo = $y; # similar, with an attribute applied -B: The use of attribute lists on C declarations is -experimental. This feature should not be relied upon. It may -change or disappear in future releases of Perl. See L. +B: The use of attribute lists on C declarations is still +evolving. The current semantics and interface are subject to change. +See L and L. The C operator declares the listed variables to be lexically confined to the enclosing block, conditional (C), @@ -1360,7 +1360,7 @@ parsed and invoked: use attributes __PACKAGE__, \&plugh, q[Ugly('\(")], 'Bad'; For further details on attribute lists and their manipulation, -see L. +see L and L. =head1 SEE ALSO