In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/2259428871a6fb8a1e940f479ee57f0f1bb507d1?hp=4fb67938d761c2c60668d0aa0ff50b0f31fe2b26>

- Log -----------------------------------------------------------------
commit 2259428871a6fb8a1e940f479ee57f0f1bb507d1
Author: Karl Williamson <[email protected]>
Date:   Sat Feb 19 12:13:09 2011 -0700

    toke.c: Don't take the address of a register
    
    I discovered after I pushed 858a358bdd94da8251cdb2210d9bec7c1bbe7464
    that I had forgotten to 'git add' changes before committing.
-----------------------------------------------------------------------

Summary of changes:
 toke.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/toke.c b/toke.c
index 9e863df..a4a279f 100644
--- a/toke.c
+++ b/toke.c
@@ -8857,7 +8857,7 @@ STATIC char *
 S_scan_subst(pTHX_ char *start)
 {
     dVAR;
-    register char *s;
+    char *s;
     register PMOP *pm;
     I32 first_start;
     I32 es = 0;

--
Perl5 Master Repository

Reply via email to