[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index][Thread Index][Top&Search][Original]

Use F formatting code in perlguts



Howdy,

Some of the filenames in perlguts do not use the F formatting code.
The attached patch makes them do so.

-- 
Matt                                                 http://ftbfs.org/
commit 87273d83bb0ebd59f658920670e5189f001a3d30
Author: Matt Kraai <kraai@ftbfs.org>
Date:   Thu Jul 3 14:04:44 2008 -0700

    Use the F formatting codes for filenames in pod/perlguts.pod.

diff --git a/pod/perlguts.pod b/pod/perlguts.pod
index 12d81ff..cb10f19 100644
--- a/pod/perlguts.pod
+++ b/pod/perlguts.pod
@@ -1959,7 +1959,7 @@ sanctioned for use in extensions) begins like this:
   void
   Perl_sv_setiv(pTHX_ SV* dsv, IV num)
 
-C<pTHX_> is one of a number of macros (in perl.h) that hide the
+C<pTHX_> is one of a number of macros (in F<perl.h>) that hide the
 details of the interpreter's context.  THX stands for "thread", "this",
 or "thingy", as the case may be.  (And no, George Lucas is not involved. :-)
 The first character could be 'p' for a B<p>rototype, 'a' for B<a>rgument,
@@ -2028,7 +2028,7 @@ built with PERL_IMPLICIT_CONTEXT enabled.
 
 There are three ways to do this.  First, the easy but inefficient way,
 which is also the default, in order to maintain source compatibility
-with extensions: whenever XSUB.h is #included, it redefines the aTHX
+with extensions: whenever F<XSUB.h> is #included, it redefines the aTHX
 and aTHX_ macros to call a function that will return the context.
 Thus, something like:
 

Follow-Ups from:
Matt Kraai <kraai@ftbfs.org>

[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index][Thread Index][Top&Search][Original]