summaryrefslogtreecommitdiff
path: root/pod/perlintern.pod
diff options
context:
space:
mode:
authorJohn Peacock <jpeacock@rowman.com>2002-10-04 19:15:10 -0400
committerhv <hv@crypt.org>2002-10-10 11:19:57 +0000
commitad63d80fcd28c3b5fdbb5328f0f8ea29cbce94d8 (patch)
tree35708f6fc83804559779fb7c279cae43507579ca /pod/perlintern.pod
parentd2b7433c48dc7d27927575c53e6065b136942905 (diff)
downloadperl-ad63d80fcd28c3b5fdbb5328f0f8ea29cbce94d8.tar.gz
Version object combined patch
Message-ID: <3D9E593E.1060605@rowman.com> p4raw-id: //depot/perl@17990
Diffstat (limited to 'pod/perlintern.pod')
-rw-r--r--pod/perlintern.pod10
1 files changed, 5 insertions, 5 deletions
diff --git a/pod/perlintern.pod b/pod/perlintern.pod
index d256e7ec09..a9915d2fc7 100644
--- a/pod/perlintern.pod
+++ b/pod/perlintern.pod
@@ -402,7 +402,7 @@ Found in file pad.c
=item cv_clone
Clone a CV: make a new CV which points to the same code etc, but which
-has a newly-created pad done by copying the prototype pad and capturing
+has a newly-created pad built by copying the prototype pad and capturing
any outer lexicals.
CV* cv_clone(CV* proto)
@@ -491,7 +491,6 @@ Check for duplicate declarations: report any of:
as C<ourstash>
C<is_our> indicates that the name to check is an 'our' declaration
-
void pad_check_dup(char* name, bool is_our, HV* ourstash)
=for hackers
@@ -511,9 +510,10 @@ Found in file pad.c
=item pad_findmy
-Given a lexical name, try to find it's offset, first in the current pad,
+Given a lexical name, try to find its offset, first in the current pad,
or failing that, in the pads of any lexically enclosing subs (including
-the complications introduced by eval). If the name is found in an outer pad, then a fake entry is added to the current pad.
+the complications introduced by eval). If the name is found in an outer pad,
+then a fake entry is added to the current pad.
Returns the offset in the current pad, or NOT_IN_PAD on failure.
PADOFFSET pad_findmy(char* name)
@@ -552,7 +552,7 @@ Found in file pad.c
=item pad_new
-Create a new comnpiling padlist, saving and updating the various global
+Create a new compiling padlist, saving and updating the various global
vars at the same time as creating the pad itself. The following flags
can be OR'ed together: