diff options
author | Andy Lester <andy@petdance.com> | 2005-03-10 09:17:28 -0600 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-03-11 10:22:28 +0000 |
commit | 2601929893f334f18dbc48652b91b4acab6e8915 (patch) | |
tree | bfe6c04b282aa6be8f03f07521dcf8d1b5faec1e /pod | |
parent | e199e3bef188fd5eadcca420af186241e2773db1 (diff) | |
download | perl-2601929893f334f18dbc48652b91b4acab6e8915.tar.gz |
pad_push numero three-o
Message-ID: <20050310211728.GC32386@petdance.com>
p4raw-id: //depot/perl@24023
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlintern.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlintern.pod b/pod/perlintern.pod index 48a433a8ac..d50cbbdf14 100644 --- a/pod/perlintern.pod +++ b/pod/perlintern.pod @@ -697,10 +697,10 @@ Found in file pad.c =item pad_push Push a new pad frame onto the padlist, unless there's already a pad at -this depth, in which case don't bother creating a new one. -If has_args is true, give the new pad an @_ in slot zero. +this depth, in which case don't bother creating a new one. Then give +the new pad an @_ in slot zero. - void pad_push(PADLIST *padlist, int depth, int has_args) + void pad_push(PADLIST *padlist, int depth) =for hackers Found in file pad.c |