summaryrefslogtreecommitdiff
path: root/intrpvar.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2012-08-18 11:38:50 -0700
committerFather Chrysostomos <sprout@cpan.org>2012-08-21 16:51:16 -0700
commit36c300bbdcc2e5f7d99e22c67be087ae5fa8fd96 (patch)
treebb190324a15805ba4fc0f5f545e5450a4ef85988 /intrpvar.h
parent58a9b2fe76a2c3c9817e49949a4671f192933d9a (diff)
downloadperl-36c300bbdcc2e5f7d99e22c67be087ae5fa8fd96.tar.gz
Use new types for comppad and comppad_name
I know that a few times I’ve looked at perl source files to find out what type to use in ‘<type> foo = PL_whatever’. So I am changing intrpvar.h as well as the api docs.
Diffstat (limited to 'intrpvar.h')
-rw-r--r--intrpvar.h4
1 files changed, 2 insertions, 2 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 */