summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2005-03-10 09:17:28 -0600
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-03-11 10:22:28 +0000
commit08d9d725a122a64de23a618a00fd68c368735ad8 (patch)
treebfe6c04b282aa6be8f03f07521dcf8d1b5faec1e /pod
parentfdf7ec451339b3965d6d8ea6a28e8fa71e17daf1 (diff)
downloadperl-08d9d725a122a64de23a618a00fd68c368735ad8.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.pod6
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