Re: [perl #40302] sigtrap(3pm) man page is vague
David Nicol [Fri, 8 Sep 2006 11:19:23 +0000 (06:19 -0500)]
From: "David Nicol" <davidnicol@gmail.com>
Message-ID: <934f64a20609080919g3d0add8cr1ca3d1c7ea9a5d32@mail.gmail.com>

p4raw-id: //depot/perl@28815

lib/sigtrap.pm

index c081123..c65b756 100644 (file)
@@ -8,7 +8,7 @@ sigtrap - Perl pragma to enable simple signal handling
 
 use Carp;
 
-$VERSION = 1.02;
+$VERSION = 1.03;
 $Verbose ||= 0;
 
 sub import {
@@ -180,7 +180,8 @@ The handler used for subsequently installed signals calls C<die>
 
 I<your-handler> will be used as the handler for subsequently installed
 signals.  I<your-handler> can be any value which is valid as an
-assignment to an element of C<%SIG>.
+assignment to an element of C<%SIG>. See L<perlvar> for examples of
+handler functions.
 
 =back