From: Marcus Holland-Moritz Date: Wed, 2 Jun 2004 16:48:41 +0000 (+0000) Subject: Fix apidoc entries for PUSHMARK and newXSproto. X-Git-Tag: accepted/trunk/20130322.191538~21940 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c578083cbad7ac35910083ca23adee0a729612ab;p=platform%2Fupstream%2Fperl.git Fix apidoc entries for PUSHMARK and newXSproto. p4raw-id: //depot/perl@22895 --- diff --git a/XSUB.h b/XSUB.h index 563d331..77b9441 100644 --- a/XSUB.h +++ b/XSUB.h @@ -179,7 +179,7 @@ Return an empty list from an XSUB immediately. =head1 Variables created by C and C internal functions -=for apidoc AmU||newXSproto +=for apidoc AmU||newXSproto|char* name|XSUBADDR_t f|char* filename|const char *proto Used by C to hook up XSUBs as Perl subs. Adds Perl prototypes to the subs. diff --git a/pod/perlapi.pod b/pod/perlapi.pod index bf25ea6..bef6624 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -2374,7 +2374,7 @@ Found in file pp.h Opening bracket for arguments on a callback. See C and L. - PUSHMARK; + void PUSHMARK(SP) =for hackers Found in file pp.h diff --git a/pp.h b/pp.h index 617d777..40b16e6 100644 --- a/pp.h +++ b/pp.h @@ -20,7 +20,7 @@ C. =for apidoc AmU||MARK Stack marker variable for the XSUB. See C. -=for apidoc Ams||PUSHMARK +=for apidoc Am|void|PUSHMARK|SP Opening bracket for arguments on a callback. See C and L.