summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorVincent Pit <perl@profvince.com>2010-06-03 11:44:15 +0200
committerVincent Pit <perl@profvince.com>2010-06-03 14:00:38 +0200
commit789bd863840ef4ff6c46f7c2ee0f3f64e0b5daa6 (patch)
tree547efad230cfa3f03e5c971600e394627beb62f3 /proto.h
parent540810e8986e170e75f4b34a7ca1f1dd5b0da3c4 (diff)
downloadperl-789bd863840ef4ff6c46f7c2ee0f3f64e0b5daa6.tar.gz
Make pp_reverse fetch the lexical $_ from the correct pad
This is achieved by introducing a new find_rundefsv() function in pad.c This fixes [perl #75436].
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/proto.h b/proto.h
index 6ccf19ca68..c27313c512 100644
--- a/proto.h
+++ b/proto.h
@@ -2510,6 +2510,7 @@ PERL_CALLCONV PADOFFSET Perl_pad_findmy(pTHX_ const char* name, STRLEN len, U32
assert(name)
PERL_CALLCONV PADOFFSET Perl_find_rundefsvoffset(pTHX);
+PERL_CALLCONV SV* Perl_find_rundefsv(pTHX);
PERL_CALLCONV OP* Perl_oopsAV(pTHX_ OP* o)
__attribute__warn_unused_result__
__attribute__nonnull__(pTHX_1);