From: "Iain 'Spoon' Truskett (via RT)" <perlbug-followup@perl.org>
Message-Id: <rt-24189-65954.9.
50514379869631@rt.perl.org>
p4raw-id: //depot/perl@21442
use strict 'subs';
$SIG{PIPE} = Plumber; # blows up
- $SIG{PIPE} = "Plumber"; # just fine: bareword in curlies always ok
+ $SIG{PIPE} = "Plumber"; # just fine: quoted string is always ok
$SIG{PIPE} = \&Plumber; # preferred form
=back