diff options
author | Andy Lester <andy@petdance.com> | 2005-06-02 11:19:54 -0500 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-06-03 08:04:25 +0000 |
commit | b432a67249666bce4aa3385263660dc667d150d7 (patch) | |
tree | d7fccc07dbacb727f1e2d96499970be0b3682421 /pod/perlipc.pod | |
parent | 3a205795a9fa8c21e484e9a8efe6e9257c24bd1e (diff) | |
download | perl-b432a67249666bce4aa3385263660dc667d150d7.tar.gz |
Quotes in pod/*.pod
Message-ID: <20050602211954.GA22107@petdance.com>
p4raw-id: //depot/perl@24686
Diffstat (limited to 'pod/perlipc.pod')
-rw-r--r-- | pod/perlipc.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlipc.pod b/pod/perlipc.pod index 5bf4f6cfd9..efae6875ef 100644 --- a/pod/perlipc.pod +++ b/pod/perlipc.pod @@ -307,8 +307,8 @@ value, and return. This doesn't help you if you're in a slow system call, which will just restart. That means you have to C<die> to longjump(3) out of the handler. Even this is a little cavalier for the true paranoiac, who avoids C<die> in a handler because the system I<is> out to get you. -The pragmatic approach was to say ``I know the risks, but prefer the -convenience'', and to do anything you wanted in your signal handler, +The pragmatic approach was to say "I know the risks, but prefer the +convenience", and to do anything you wanted in your signal handler, and be prepared to clean up core dumps now and again. In Perl 5.7.3 and later to avoid these problems signals are |