projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
81eaca1
)
[perl #24189] Incorrect comment in perldoc strict
author
Iain Spoon Truskett
<unknown>
Sun, 12 Oct 2003 09:01:25 +0000
(09:01 +0000)
committer
Abhijit Menon-Sen
<ams@wiw.org>
Mon, 13 Oct 2003 08:41:17 +0000
(08:41 +0000)
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
lib/strict.pm
patch
|
blob
|
history
diff --git
a/lib/strict.pm
b/lib/strict.pm
index
40fb56e
..
d14391a
100644
(file)
--- 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 curlie
s always ok
+ $SIG{PIPE} = "Plumber"; # just fine:
quoted string i
s always ok
$SIG{PIPE} = \&Plumber; # preferred form
=back