In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/4aaafc03904bf62df69dd883497e05993a87e6c5?hp=25a9f0e724ff0f469866f8713f0e79f3159bf870>

- Log -----------------------------------------------------------------
commit 4aaafc03904bf62df69dd883497e05993a87e6c5
Author: Yves Orton <[email protected]>
Date:   Sat Mar 26 12:22:06 2016 +0100

    fix debug sprintf issue
-----------------------------------------------------------------------

Summary of changes:
 regcomp.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/regcomp.c b/regcomp.c
index 63f6e9e..be6cb96 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -2166,7 +2166,8 @@ S_dump_trie_interim_table(pTHX_ const struct 
_reg_trie_data *trie,
         }
     }
 
-    Perl_re_printf( aTHX_  "\n%*sState+-",depth+1 );
+    Perl_re_printf( aTHX_ "\n");
+    Perl_re_indentf( aTHX_  "State+-", depth+1 );
 
     for( charid=0 ; charid < trie->uniquecharcount ; charid++ ) {
         Perl_re_printf( aTHX_  "%.*s", colwidth,"--------");

--
Perl5 Master Repository

Reply via email to