In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/e3fc134b1ac7f28cea00beac3f3718ea514d9c2b?hp=e40df737416c5e43999acc42b9a465a2773a5c19>

- Log -----------------------------------------------------------------
commit e3fc134b1ac7f28cea00beac3f3718ea514d9c2b
Merge: cd799e5 e40df73
Author: James E Keenan <jkee...@cpan.org>
Date:   Wed Feb 27 07:33:32 2013 -0500

    Merge branch 'blead' of jkee...@perl5.git.perl.org:/perl into blead

commit cd799e5afc8eb110c039caa2a490e57116c0e1b4
Author: Scott Lanning <slann...@cpan.org>
Date:   Tue Feb 26 23:53:04 2013 +0300

    minor perlipc doc fix missing semicolon

M       Porting/checkAUTHORS.pl
M       pod/perlipc.pod

commit 98cfa7fedc7b17ca9f77cf5941921f51443bdf9a
Author: James E Keenan <jkee...@cpan.org>
Date:   Tue Feb 26 21:49:54 2013 -0500

    Add alternate email address for contributor.

M       Porting/checkAUTHORS.pl
-----------------------------------------------------------------------

Summary of changes:
 Porting/checkAUTHORS.pl |    2 ++
 pod/perlipc.pod         |    2 +-
 2 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/Porting/checkAUTHORS.pl b/Porting/checkAUTHORS.pl
index ff9c27f..a687824 100755
--- a/Porting/checkAUTHORS.pl
+++ b/Porting/checkAUTHORS.pl
@@ -862,6 +862,8 @@ simon\100simon-cozens.org               
simon\100pembro4.pmb.ox.ac.uk
 +                                       simon\100othersideofthe.earth.li
 +                                       simon\100cozens.net
 +                                       simon\100netthink.co.uk
+lannings\100who.int                     lannings\100gmail.com
++                                       slanning\100cpan.org
 slaven\100rezic.de                      slaven.rezic\100berlin.de
 +                                       srezic\100iconmobile.com
 +                                       srezic\100cpan.org
diff --git a/pod/perlipc.pod b/pod/perlipc.pod
index 854ffa2..f236c4a 100644
--- a/pod/perlipc.pod
+++ b/pod/perlipc.pod
@@ -521,7 +521,7 @@ output doesn't wind up on the user's terminal.
         open(STDOUT, "> /dev/null")     || die "can't write to /dev/null: $!";
         defined(my $pid = fork())       || die "can't fork: $!";
         exit if $pid;                   # non-zero now means I am the parent
-        (setsid() != -1)                || die "Can't start a new session: $!" 
+        (setsid() != -1)                || die "Can't start a new session: $!";
         open(STDERR, ">&STDOUT")        || die "can't dup stdout: $!";
     }
 

--
Perl5 Master Repository

Reply via email to