diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2002-11-24 22:19:06 +0000 |
---|---|---|
committer | hv <hv@crypt.org> | 2002-12-02 00:58:54 +0000 |
commit | d1a83f030cf005cf24000e51c35cae0c98fcbbc7 (patch) | |
tree | 414f284613a099a7fc5dde52837c3e0f3601fc59 /pp_hot.c | |
parent | 24200fce502d064473a22e682c66d01118d76507 (diff) | |
download | perl-d1a83f030cf005cf24000e51c35cae0c98fcbbc7.tar.gz |
allow evals to see the full lexical scope
Message-ID: <20021124221906.A25386@fdgroup.com>
p4raw-id: //depot/perl@18220
Diffstat (limited to 'pp_hot.c')
-rw-r--r-- | pp_hot.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2624,8 +2624,8 @@ try_autoload: CvDEPTH(cv)++; /* XXX This would be a natural place to set C<PL_compcv = cv> so * that eval'' ops within this sub know the correct lexical space. - * Owing the speed considerations, we choose to search for the cv - * in doeval() instead. + * Owing the speed considerations, we choose instead to search for + * the cv using find_runcv() when calling doeval(). */ if (CvDEPTH(cv) < 2) (void)SvREFCNT_inc(cv); |