diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-10-17 18:07:47 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-10-17 20:28:37 -0700 |
commit | baabe3fb419f01704a85104dce71b0c631a4a373 (patch) | |
tree | e678982ce70016159b2b424ee513c881158ead4e /regen/feature.pl | |
parent | 7caca87c551af84ff2565616310024f95c4a5c7c (diff) | |
download | perl-baabe3fb419f01704a85104dce71b0c631a4a373.tar.gz |
Rename lvalue references
Also correct the description of lvref magic. When it was first added,
it was for list assignments only, but that soon changed.
Diffstat (limited to 'regen/feature.pl')
-rwxr-xr-x | regen/feature.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/regen/feature.pl b/regen/feature.pl index b58381c5d2..ed7c4907f3 100755 --- a/regen/feature.pl +++ b/regen/feature.pl @@ -29,7 +29,7 @@ my %feature = ( postderef => 'postderef', array_base => 'arybase', current_sub => '__SUB__', - lvalue_refs => 'lvref', + refaliasing => 'refaliasing', lexical_subs => 'lexsubs', postderef_qq => 'postderef_qq', unicode_eval => 'unieval', @@ -590,14 +590,14 @@ See L<perlsub/Signatures> for details. This feature is available from Perl 5.20 onwards. -=head2 The 'lvalue_refs' feature +=head2 The 'refaliasing' feature B<WARNING>: This feature is still experimental and the implementation may change in future versions of Perl. For this reason, Perl will warn when you use the feature, unless you have explicitly disabled the warning: - no warnings "experimental::lvalue_refs"; + no warnings "experimental::refaliasing"; This enables aliasing via assignment to references: |