diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-10-15 18:39:59 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-10-15 18:39:59 -0700 |
commit | 6e6708186f21e01745b94f01d5f630948e1cbcb2 (patch) | |
tree | 4757fb1b02587a3a6b6e0d5e09873c1139f8fdd5 /pad.c | |
parent | b53e16ae1ca3058ca93f7a74bc5e715eea2b8412 (diff) | |
download | perl-6e6708186f21e01745b94f01d5f630948e1cbcb2.tar.gz |
Correct comment in pad.c
It said exactly the opposite of what was meant.
Diffstat (limited to 'pad.c')
-rw-r--r-- | pad.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,7 +43,7 @@ but that is really the callers pad (a slot of which is allocated by every entersub). The CvPADLIST AV has the REFCNT of its component items managed "manually" -(mostly in pad.c) rather than by normal av.c rules. So we mark it AvREAL +(mostly in pad.c) rather than by normal av.c rules. So we turn off AvREAL just before freeing it, to let av.c know not to touch the entries. The items in the AV are not SVs as for a normal AV, but other AVs: |