In perl.git, the branch blead has been updated

<https://perl5.git.perl.org/perl.git/commitdiff/6894e6a7854351af3251a20ce5c787463bc7643a?hp=017192018b7f9fc4b889bb344bd75df8f6b78929>

- Log -----------------------------------------------------------------
commit 6894e6a7854351af3251a20ce5c787463bc7643a
Author: David Mitchell <da...@iabyn.com>
Date:   Fri Apr 5 17:01:53 2019 +0100

    fixup to 'change LABEL type from pval to opval'
    
    Commit v5.29.9-68-g017192018b broke g++ builds. Spotted by Karl.

-----------------------------------------------------------------------

Summary of changes:
 toke.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/toke.c b/toke.c
index 0273566a9b..30bdf325d5 100644
--- a/toke.c
+++ b/toke.c
@@ -7192,7 +7192,7 @@ Perl_yylex(pTHX)
        if (!anydelim && PL_expect == XSTATE
              && d < PL_bufend && *d == ':' && *(d + 1) != ':') {
            s = d + 1;
-            pl_yylval.pval =
+            pl_yylval.opval =
                 newSVOP(OP_CONST, 0,
                     newSVpvn_flags(PL_tokenbuf, len, UTF ? SVf_UTF8 : 0));
            CLINE;

-- 
Perl5 Master Repository

Reply via email to