diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-06-23 21:48:07 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-06-24 08:19:26 -0700 |
commit | d3d7d28f48f0f4ec3f5cf5d018255ea731f01f56 (patch) | |
tree | efd138ff1d329dceb01d8831d5a3efdbc0cf86fc /embed.h | |
parent | 63983e4c95135b2dd0fa466c28136f053046a340 (diff) | |
download | perl-d3d7d28f48f0f4ec3f5cf5d018255ea731f01f56.tar.gz |
op_lvalue .= _flags
Add flags param to op_lvalue, so that the caller can ask it not to
croak when encountering an unmodifiable op (upcoming).
This is in preparation for making the \$ prototype accept any lvalue.
There is no mathom, as the changes that this will support
are by no means suitable for maint.
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -375,7 +375,6 @@ #define op_dump(a) Perl_op_dump(aTHX_ a) #define op_free(a) Perl_op_free(aTHX_ a) #define op_linklist(a) Perl_op_linklist(aTHX_ a) -#define op_lvalue(a,b) Perl_op_lvalue(aTHX_ a,b) #define op_null(a) Perl_op_null(aTHX_ a) #define op_prepend_elem(a,b,c) Perl_op_prepend_elem(aTHX_ a,b,c) #define op_refcnt_lock() Perl_op_refcnt_lock(aTHX) |