diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-10-30 16:54:06 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-10-30 16:54:39 -0700 |
commit | 57ee99bb286d6d63dbe7471fdbfa7327c210eaa5 (patch) | |
tree | 3ff790ae9d85f1660ca9568db84cd5bd8e3854dc /pad.h | |
parent | 636eb14b5af56544a07c740d2a7698bd6c054a87 (diff) | |
download | perl-57ee99bb286d6d63dbe7471fdbfa7327c210eaa5.tar.gz |
pad.h: Correct PadlistMAX docs
They have been wrong since I added them.
Diffstat (limited to 'pad.h')
-rw-r--r-- | pad.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -179,7 +179,9 @@ The C array of a padlist, containing the pads. Only subscript it with numbers >= 1, as the 0th entry is not guaranteed to remain usable. =for apidoc Amx|SSize_t|PadlistMAX|PADLIST padlist -The index of the last pad in the padlist. +The index of the last allocated space in the padlist. Note that the last +pad may be in an earlier slot. Any entries following it will be NULL in +that case. =for apidoc Amx|PADNAMELIST *|PadlistNAMES|PADLIST padlist The names associated with pad entries. |