In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/5ec39af34356fc1ce06d38fb541689e59f9eff20?hp=03c6205fee4d43c0a6607c90e46b4daffd749da3>

- Log -----------------------------------------------------------------
commit 5ec39af34356fc1ce06d38fb541689e59f9eff20
Author: David Mitchell <[email protected]>
Date:   Mon Oct 27 15:24:45 2014 +0000

    silence new compiler warning
    
    8b9781c905d8 added a new arg to regprop(), but it's only used on debugging
    builds. Also, moving the definition of regprop() in embed.fnc left a
    stranded comment, so delete that too.
-----------------------------------------------------------------------

Summary of changes:
 embed.fnc | 1 -
 regcomp.c | 1 +
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/embed.fnc b/embed.fnc
index ded066b..53f4b85 100644
--- a/embed.fnc
+++ b/embed.fnc
@@ -1219,7 +1219,6 @@ EXp       |I32|reg_numbered_buff_length|NN REGEXP * const 
rx|NN const SV * const sv|co
 : FIXME - is anything in re using this now?
 EXp    |SV*|reg_qr_package|NN REGEXP * const rx
 
-: FIXME - why the E?
 Anp    |void   |repeatcpy      |NN char* to|NN const char* from|I32 len|IV 
count
 AnpP   |char*  |rninstr        |NN const char* big|NN const char* bigend \
                                |NN const char* little|NN const char* lend
diff --git a/regcomp.c b/regcomp.c
index 534922c..2e633e8 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -16503,6 +16503,7 @@ Perl_regprop(pTHX_ const regexp *prog, SV *sv, const 
regnode *o, const regmatch_
     PERL_UNUSED_ARG(o);
     PERL_UNUSED_ARG(prog);
     PERL_UNUSED_ARG(reginfo);
+    PERL_UNUSED_ARG(pRExC_state);
 #endif /* DEBUGGING */
 }
 

--
Perl5 Master Repository

Reply via email to