[patch] L<perlguts/"API LISTING"> is now L<perlapi>
Stas Bekman [Thu, 5 Jun 2003 10:10:36 +0000 (20:10 +1000)]
Date: Thu, 05 Jun 2003 10:10:36 +1000
Message-ID: <3EDE8A7C.2080302@stason.org>

Subject: [patch] perlguts authors dup
From: Stas Bekman <stas@stason.org>
Date: Thu, 05 Jun 2003 10:14:12 +1000
Message-ID: <3EDE8B54.6090808@stason.org>

p4raw-id: //depot/perl@19699

pod/perl5005delta.pod
pod/perlguts.pod
pod/perlxs.pod

index b9c7deb..58d0c79 100644 (file)
@@ -89,7 +89,7 @@ begin with C<perl> be referenced with a C<Perl_> prefix.  The bare function
 names without the C<Perl_> prefix are supported with macros, but this
 support may cease in a future release.
 
-See L<perlguts/"API LISTING">.
+See L<perlapi>.
 
 =item *
 
index 83ed068..79354c2 100644 (file)
@@ -2428,11 +2428,6 @@ Andreas Koenig, Paul Hudson, Ilya Zakharevich, Paul Marquess, Neil
 Bowers, Matthew Green, Tim Bunce, Spider Boardman, Ulrich Pfeifer,
 Stephen McCamant, and Gurusamy Sarathy.
 
-API Listing originally by Dean Roehrich E<lt>roehrich@cray.comE<gt>.
-
-Modifications to autogenerate the API listing (L<perlapi>) by Benjamin
-Stuhl.
-
 =head1 SEE ALSO
 
 perlapi(1), perlintern(1), perlxs(1), perlembed(1)
index 0b66596..f126ff8 100644 (file)
@@ -1064,8 +1064,8 @@ then not push return values on the stack.
 Some people may be inclined to include an explicit C<return> in the above
 XSUB, rather than letting control fall through to the end.  In those
 situations C<XSRETURN_EMPTY> should be used, instead.  This will ensure that
-the XSUB stack is properly adjusted.  Consult L<perlguts/"API LISTING"> for
-other C<XSRETURN> macros.
+the XSUB stack is properly adjusted.  Consult L<perlapi> for other
+C<XSRETURN> macros.
 
 Since C<XSRETURN_*> macros can be used with CODE blocks as well, one can
 rewrite this example as: