From: Jarkko Hietaniemi Date: Sat, 13 Jul 2002 22:31:07 +0000 (+0000) Subject: Small pod nits. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d6fd60d6c3a0774fbfe740ce757e706eb822df8d;p=p5sagit%2Fp5-mst-13.2.git Small pod nits. p4raw-id: //depot/perl@17525 --- diff --git a/README.irix b/README.irix index de06b00..0681914 100644 --- a/README.irix +++ b/README.irix @@ -25,7 +25,7 @@ or later compilers (use cc -version to check). =head2 Building 64-bit Perl in Irix Use - + sh Configure -Dcc='cc -64' -Duse64bitint This requires require a 64-bit MIPS CPU (R8000, R10000, ...) diff --git a/README.os2 b/README.os2 index e23aad9..e02c081 100644 --- a/README.os2 +++ b/README.os2 @@ -1706,7 +1706,7 @@ modules for the details on usage of these functions. Some of these functions also combine dynaloading semantic with the error-propagation semantic discussed above. - + =back =head1 Perl flavors diff --git a/pod/perlhack.pod b/pod/perlhack.pod index 8c5d213..fbb7c9b 100644 --- a/pod/perlhack.pod +++ b/pod/perlhack.pod @@ -482,8 +482,6 @@ for reference. =head2 Perlbug remote interface -=over 4 - There are three (3) remote administrative interfaces for modifying bug status, category, etc. In all cases an admin must be first registered with the Perlbug database by sending an email request to @@ -498,6 +496,8 @@ For more info on the web see http://bugs.perl.org/perlbug.cgi?req=spec +=over 4 + =item 1 http://bugs.perl.org Login via the web, (remove B if only browsing), where interested diff --git a/pod/perlipc.pod b/pod/perlipc.pod index c75fa95..02f2687 100644 --- a/pod/perlipc.pod +++ b/pod/perlipc.pod @@ -191,33 +191,33 @@ located in the subroutine C, which simply prints some debug info to show that it works and should be replaced with the real code. #!/usr/bin/perl -w - + use POSIX (); use FindBin (); use File::Basename (); use File::Spec::Functions; - + $|=1; - + # make the daemon cross-platform, so exec always calls the script # itself with the right path, no matter how the script was invoked. my $script = File::Basename::basename($0); my $SELF = catfile $FindBin::Bin, $script; - + # POSIX unmasks the sigprocmask properly my $sigset = POSIX::SigSet->new(); my $action = POSIX::SigAction->new('sigHUP_handler', $sigset, &POSIX::SA_NODEFER); POSIX::sigaction(&POSIX::SIGHUP, $action); - + sub sigHUP_handler { print "got SIGHUP\n"; exec($SELF, @ARGV) or die "Couldn't restart: $!\n"; } - + code(); - + sub code { print "PID: $$\n"; print "ARGV: @ARGV\n";