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 /mg_vtable.h | |
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 'mg_vtable.h')
-rw-r--r-- | mg_vtable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mg_vtable.h b/mg_vtable.h index 2ee636106e..c0bb820551 100644 --- a/mg_vtable.h +++ b/mg_vtable.h @@ -55,7 +55,7 @@ #define PERL_MAGIC_substr 'x' /* substr() lvalue */ #define PERL_MAGIC_defelem 'y' /* Shadow "foreach" iterator variable / smart parameter vivification */ -#define PERL_MAGIC_lvref '\\' /* Lvalue reference in list assignment */ +#define PERL_MAGIC_lvref '\\' /* Lvalue reference constructor */ #define PERL_MAGIC_checkcall ']' /* Inlining/mutation of call to this CV */ #define PERL_MAGIC_ext '~' /* Available for use by extensions */ |