projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
14ba8b5
)
The LVRET macro needed an aTHX.
author
Jarkko Hietaniemi
<jhi@iki.fi>
Sat, 13 Jan 2001 04:24:18 +0000
(
04:24
+0000)
committer
Jarkko Hietaniemi
<jhi@iki.fi>
Sat, 13 Jan 2001 04:24:18 +0000
(
04:24
+0000)
p4raw-id: //depot/perl@8430
pp.h
patch
|
blob
|
history
diff --git
a/pp.h
b/pp.h
index
81bf022
..
51a6105
100644
(file)
--- 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
))