diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-09-01 16:27:48 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-09-01 16:27:48 +0000 |
commit | 1c75a43bf7257081c0bfa53f793afc33ee95ff02 (patch) | |
tree | 37fb00e35dc65350aa84c0ec579e2f9aff43ef62 /pp_ctl.c | |
parent | 006bba40b64d69fcc85f3e7a0fe4b845e93164c0 (diff) | |
download | perl-1c75a43bf7257081c0bfa53f793afc33ee95ff02.tar.gz |
Access to cx->blk_sub.lval via macros (as it's about to move).
p4raw-id: //depot/perl@28773
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1289,8 +1289,8 @@ Perl_is_lvalue_sub(pTHX) const I32 cxix = dopoptosub(cxstack_ix); assert(cxix >= 0); /* We should only be called from inside subs */ - if (cxstack[cxix].blk_sub.lval && CvLVALUE(cxstack[cxix].blk_sub.cv)) - return cxstack[cxix].blk_sub.lval; + if (CX_SUB_LVAL(cxstack + cxix) && CvLVALUE(cxstack[cxix].blk_sub.cv)) + return CX_SUB_LVAL(cxstack + cxix); else return 0; } |