Unknown discipline ':utf8' w/ maint perl w/o perlio
[p5sagit/p5-mst-13.2.git] / pod / perlipc.pod
index 8412bfd..5f8af22 100644 (file)
@@ -105,9 +105,9 @@ or has changed its UID.
 When directed at a process whose UID is not identical to that
 of the sending process, signal number zero may fail because
 you lack permission to send the signal, even though the process is alive.
-You may be able to determine the cause of failure using C<$!>.
+You may be able to determine the cause of failure using C<%!>.
 
-    unless (kill 0 => $pid or $! == $!{EPERM}) {
+    unless (kill 0 => $pid or $!{EPERM}) {
        warn "$pid looks dead";
     }
 
@@ -288,7 +288,7 @@ to find out whether anyone (or anything) has accidentally removed our fifo.
        sleep 2;    # to avoid dup signals
     }
 
-=head2 Deferred Signals (Safe signals)
+=head2 Deferred Signals (Safe Signals)
 
 In Perls before Perl 5.7.3 by installing Perl code to deal with
 signals, you were exposing yourself to danger from two things.  First,