From: Jarkko Hietaniemi Date: Mon, 15 Jan 2001 12:57:08 +0000 (+0000) Subject: Use the /^Perl_/-less form of is_lvalue_sub(). X-Git-Tag: accepted/trunk/20130322.191538~33078 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9d96b2e75ff1733e38cb57edc6d33908d11ecd49;p=platform%2Fupstream%2Fperl.git Use the /^Perl_/-less form of is_lvalue_sub(). p4raw-id: //depot/perl@8441 --- diff --git a/pp.h b/pp.h index 51a6105..b05e6d0 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(aTHX)) +#define LVRET ((PL_op->op_private & OPpMAYBE_LVSUB) && is_lvalue_sub())