diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-28 21:12:22 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-28 21:12:22 +0000 |
commit | 2680586ee66b8de4d2b5f26a2013220f2bec9d5f (patch) | |
tree | dce0c6347c8a0e842bc43bc34efbccc3fd44acfe /proto.h | |
parent | 3467312b2d3ee442c007c093aaf0becc72151b00 (diff) | |
download | perl-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); |