diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-09-16 00:20:23 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-09-17 16:57:51 -0700 |
commit | 9c47725a2c7c1a5a17231082af905d106c5467fb (patch) | |
tree | 5304bf69f59a3d3d06b5ae851be1648777069457 /pad.h | |
parent | 62698e047b935ed44827dc9c8a013c1c41a9697d (diff) | |
download | perl-9c47725a2c7c1a5a17231082af905d106c5467fb.tar.gz |
Revert "Set PL_comppad_name on sub entry"
This reverts commit d2c8bf052f5a8bb99050f6d2418d77151eb4b468.
Diffstat (limited to 'pad.h')
-rw-r--r-- | pad.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -172,7 +172,7 @@ XXX DAPM it would make more sense to make the arg a PADOFFSET Clear the pointed to pad value on scope exit. (i.e. the runtime action of 'my') =for apidoc m|void|SAVECOMPPAD -Save PL_comppad_name, PL_comppad and PL_curpad. +save PL_comppad and PL_curpad =for apidoc Amx|PAD **|PadlistARRAY|PADLIST padlist @@ -318,7 +318,6 @@ Restore the old pad saved into the local variable opad by PAD_SAVE_LOCAL() #define PAD_SET_CUR_NOSAVE(padlist,nth) \ - PL_comppad_name = PadlistNAMES(padlist); \ PL_comppad = (PAD*) (PadlistARRAY(padlist)[nth]); \ PL_curpad = AvARRAY(PL_comppad); \ DEBUG_Xv(PerlIO_printf(Perl_debug_log, \ |