From: Jarkko Hietaniemi Date: Sat, 13 Jan 2001 04:24:18 +0000 (+0000) Subject: The LVRET macro needed an aTHX. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=bee2ec04fc994b89da41b7d4b998da6c19459895;p=p5sagit%2Fp5-mst-13.2.git The LVRET macro needed an aTHX. p4raw-id: //depot/perl@8430 --- diff --git a/pp.h b/pp.h index 81bf022..51a6105 100644 --- a/pp.h +++ b/pp.h @@ -386,4 +386,4 @@ See C. True if this op will be the return value of an lvalue subroutine =cut */ -#define LVRET ((PL_op->op_private & OPpMAYBE_LVSUB) && Perl_is_lvalue_sub()) +#define LVRET ((PL_op->op_private & OPpMAYBE_LVSUB) && Perl_is_lvalue_sub(aTHX))