In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/944d48f78fffdf92a1710164726d48604225142c?hp=daeb922a13767cdbdeac0ab09127e170558c9798>

- Log -----------------------------------------------------------------
commit 944d48f78fffdf92a1710164726d48604225142c
Author: Frank Wiegand <frank.wieg...@gmail.com>
Date:   Thu Apr 8 22:16:30 2010 +0200

    fix a2p example
-----------------------------------------------------------------------

Summary of changes:
 pod/perlutil.pod |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/pod/perlutil.pod b/pod/perlutil.pod
index 2d9b4ad..453248d 100644
--- a/pod/perlutil.pod
+++ b/pod/perlutil.pod
@@ -89,7 +89,7 @@ on the simple F<awk> script C<{print $2}> will produce a Perl 
program
 based around this code:
 
     while (<>) {
-        ($Fld1,$Fld2) = split(/[:\n]/, $_, 9999);
+        ($Fld1,$Fld2) = split(/[:\n]/, $_, -1);
         print $Fld2;
     }
 

--
Perl5 Master Repository

Reply via email to