diff options
author | Todd C. Miller <Todd.Miller@courtesan.com> | 2003-03-10 14:00:55 -0700 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-03-11 05:33:10 +0000 |
commit | a6d0563455796929d2aae5a18fb57e80a20f87bd (patch) | |
tree | a5da3d0d721e0306e0e455a5f9ae12a0dcc559c4 /pod/perlintern.pod | |
parent | 38295cca2bcea18247fdba079ba504a69c9fda94 (diff) | |
download | perl-a6d0563455796929d2aae5a18fb57e80a20f87bd.tar.gz |
typos and other minor things
From: "Todd C. Miller" <Todd.Miller@courtesan.com>
Message-Id: <200303110400.h2B40tEQ018838@xerxes.courtesan.com>
p4raw-id: //depot/perl@18904
Diffstat (limited to 'pod/perlintern.pod')
-rw-r--r-- | pod/perlintern.pod | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perlintern.pod b/pod/perlintern.pod index d6cd33340e..c4bb1d5a01 100644 --- a/pod/perlintern.pod +++ b/pod/perlintern.pod @@ -447,9 +447,9 @@ The 0'th slot of a frame AV is an AV which is @_. other entries are storage for variables and op targets. During compilation: -C<PL_comppad_name> is set the the the names AV. -C<PL_comppad> is set the the frame AV for the frame CvDEPTH == 1. -C<PL_curpad> is set the body of the frame AV (i.e. AvARRAY(PL_comppad)). +C<PL_comppad_name> is set to the names AV. +C<PL_comppad> is set to the frame AV for the frame CvDEPTH == 1. +C<PL_curpad> is set to the body of the frame AV (i.e. AvARRAY(PL_comppad)). During execution, C<PL_comppad> and C<PL_curpad> refer to the live frame of the currently executing sub. @@ -479,7 +479,7 @@ a REFCNT'ed references to a lexical from "outside". In this case, the name SV does not have a cop_seq range, since it is in scope throughout. -If the 'name' is '&' the the corresponding entry in frame AV +If the 'name' is '&' the corresponding entry in frame AV is a CV representing a possible closure. (SvFAKE and name of '&' is not a meaningful combination currently but could become so if C<my sub foo {}> is implemented.) |