diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-02-04 18:34:06 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-02-04 18:34:06 +0000 |
commit | 730b0b12c4080684620b75be6787ebbae98b8418 (patch) | |
tree | ca16ba226adf3e724542c88755e890ac8e90d1a9 /scope.c | |
parent | 43999f954454f106a60aa261bde57912dbef8b71 (diff) | |
parent | d2a79402699cee58f92911933abdc630babe73e5 (diff) | |
download | perl-730b0b12c4080684620b75be6787ebbae98b8418.tar.gz |
Integrate with Sarathy.
p4raw-id: //depot/cfgperl@4988
Diffstat (limited to 'scope.c')
-rw-r--r-- | scope.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -934,6 +934,13 @@ Perl_leave_scope(pTHX_ I32 base) } *(I32*)&PL_hints = (I32)SSPOPINT; break; + case SAVEt_COMPPAD: + PL_comppad = (AV*)SSPOPPTR; + if (PL_comppad) + PL_curpad = AvARRAY(PL_comppad); + else + PL_curpad = Null(SV**); + break; default: Perl_croak(aTHX_ "panic: leave_scope inconsistency"); } |