In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/e4fde5ca79509aa64f80d46497b7d5945e066222?hp=1520a685b7fb85729eee719408471f380b80a87a>

- Log -----------------------------------------------------------------
commit e4fde5ca79509aa64f80d46497b7d5945e066222
Author: Father Chrysostomos <[email protected]>
Date:   Tue Jul 30 20:09:36 2013 -0700

    perlsub: constant -> inlinable
    
    This was brought up in ticket #109744.  I cannot change the header of
    the section, as it will break links.  But at least we can avoid
    stressing the constancy as much.

M       pod/perlsub.pod

commit c662de5eaba4bd9c7f11b272afd1bd20925a7641
Author: Nathan Trapuzzano <[email protected]>
Date:   Tue Jul 30 19:10:20 2013 -0400

    Remove semicolon from inline TYPEMAP in perlxstut example.

M       dist/ExtUtils-ParseXS/lib/perlxstut.pod
-----------------------------------------------------------------------

Summary of changes:
 dist/ExtUtils-ParseXS/lib/perlxstut.pod | 2 +-
 pod/perlsub.pod                         | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dist/ExtUtils-ParseXS/lib/perlxstut.pod 
b/dist/ExtUtils-ParseXS/lib/perlxstut.pod
index 189b6e9..403b8da 100644
--- a/dist/ExtUtils-ParseXS/lib/perlxstut.pod
+++ b/dist/ExtUtils-ParseXS/lib/perlxstut.pod
@@ -615,7 +615,7 @@ Now we also need to create a typemap because the default 
Perl doesn't
 currently support the C<const char *> type.  Include a new TYPEMAP
 section in your XS code before the above function:
 
-        TYPEMAP: <<END;
+        TYPEMAP: <<END
        const char *    T_PV
         END
 
diff --git a/pod/perlsub.pod b/pod/perlsub.pod
index 85ba8d5..ff5feb5 100644
--- a/pod/perlsub.pod
+++ b/pod/perlsub.pod
@@ -1385,7 +1385,7 @@ the constant folding doesn't reduce them to a single 
constant:
 
 If you redefine a subroutine that was eligible for inlining, you'll get
 a warning by default.  (You can use this warning to tell whether or not a
-particular subroutine is considered constant.)  The warning is
+particular subroutine is considered inlinable.)  The warning is
 considered severe enough not to be affected by the B<-w>
 switch (or its absence) because previously compiled
 invocations of the function will still be using the old value of the

--
Perl5 Master Repository

Reply via email to