X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2Fstrict.pm;h=d14391add44341f239af567a7ca415ee53e7c861;hb=766639d92a75ec301f7ad35ba832e55266cf3ee6;hp=40fb56e1d379167f91cda8e6f643aeba25be498a;hpb=cbbb4974056af1e7a177ba8ca58779a81d7f0bcd;p=p5sagit%2Fp5-mst-13.2.git diff --git a/lib/strict.pm b/lib/strict.pm index 40fb56e..d14391a 100644 --- a/lib/strict.pm +++ b/lib/strict.pm @@ -115,7 +115,7 @@ on the left hand side of the C<< => >> symbol. 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