This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
f00d8b4
)
Use the /^Perl_/-less form of is_lvalue_sub().
author
Jarkko Hietaniemi
<jhi@iki.fi>
Mon, 15 Jan 2001 12:57:08 +0000
(12:57 +0000)
committer
Jarkko Hietaniemi
<jhi@iki.fi>
Mon, 15 Jan 2001 12:57:08 +0000
(12:57 +0000)
p4raw-id: //depot/perl@8441
pp.h
patch
|
blob
|
blame
|
history
diff --git
a/pp.h
b/pp.h
index
51a6105
..
b05e6d0
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(aTHX
))
+#define LVRET ((PL_op->op_private & OPpMAYBE_LVSUB) &&
is_lvalue_sub(
))