summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-02-28 21:12:22 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-02-28 21:12:22 +0000
commit2680586ee66b8de4d2b5f26a2013220f2bec9d5f (patch)
treedce0c6347c8a0e842bc43bc34efbccc3fd44acfe /proto.h
parent3467312b2d3ee442c007c093aaf0becc72151b00 (diff)
downloadperl-2680586ee66b8de4d2b5f26a2013220f2bec9d5f.tar.gz
fix longstanding bug: searches for lexicals originating within eval''
weren't stopping at the subroutine boundary correctly p4raw-id: //depot/perl@3037
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index d2898fe87e..e2ea784f11 100644
--- a/proto.h
+++ b/proto.h
@@ -814,7 +814,7 @@ OP *scalarboolean _((OP *o));
OP *too_few_arguments _((OP *o, char* name));
OP *too_many_arguments _((OP *o, char* name));
void null _((OP* o));
-PADOFFSET pad_findlex _((char* name, PADOFFSET newoff, U32 seq, CV* startcv, I32 cx_ix, I32 saweval));
+PADOFFSET pad_findlex _((char* name, PADOFFSET newoff, U32 seq, CV* startcv, I32 cx_ix, I32 saweval, U32 flags));
OP *newDEFSVOP _((void));
char* gv_ename _((GV *gv));
CV *cv_clone2 _((CV *proto, CV *outside));