summaryrefslogtreecommitdiff
path: root/pp.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-01-13 04:24:18 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-01-13 04:24:18 +0000
commitbee2ec04fc994b89da41b7d4b998da6c19459895 (patch)
tree527aa3c7993fb246c67ac6103248114de57af57c /pp.h
parent14ba8b5c99315fe1f22959d0e8081995a54850e4 (diff)
downloadperl-bee2ec04fc994b89da41b7d4b998da6c19459895.tar.gz
The LVRET macro needed an aTHX.
p4raw-id: //depot/perl@8430
Diffstat (limited to 'pp.h')
-rw-r--r--pp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp.h b/pp.h
index 81bf0225a1..51a61053bd 100644
--- a/pp.h
+++ b/pp.h
@@ -386,4 +386,4 @@ See C<PUSHu>.
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))