summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--intrpvar.h4
-rw-r--r--pad.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/intrpvar.h b/intrpvar.h
index 7dc9021adf..d3fa7fa985 100644
--- a/intrpvar.h
+++ b/intrpvar.h
@@ -443,8 +443,8 @@ PERLVARI(I, profiledata, U32 *, NULL) /* table of ops, counts */
PERLVAR(I, compiling, COP) /* compiling/done executing marker */
PERLVAR(I, compcv, CV *) /* currently compiling subroutine */
-PERLVAR(I, comppad, AV *) /* storage for lexically scoped temporaries */
-PERLVAR(I, comppad_name, AV *) /* variable names for "my" variables */
+PERLVAR(I, comppad, PAD *) /* storage for lexically scoped temporaries */
+PERLVAR(I, comppad_name, PADNAMELIST *) /* variable names for "my" variables */
PERLVAR(I, comppad_name_fill, I32) /* last "introduced" variable offset */
PERLVAR(I, comppad_name_floor, I32) /* start of vars in innermost block */
diff --git a/pad.c b/pad.c
index 5f5912e525..a60d7c1840 100644
--- a/pad.c
+++ b/pad.c
@@ -109,12 +109,12 @@ to be generated in evals, such as
For state vars, SVs_PADSTALE is overloaded to mean 'not yet initialised'.
-=for apidoc AmxU|AV *|PL_comppad_name
+=for apidoc AmxU|PADNAMELIST *|PL_comppad_name
During compilation, this points to the array containing the names part
of the pad for the currently-compiling code.
-=for apidoc AmxU|AV *|PL_comppad
+=for apidoc AmxU|PAD *|PL_comppad
During compilation, this points to the array containing the values
part of the pad for the currently-compiling code. (At runtime a CV may