This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
64a7432
)
perldelta: no warnings will do no good if you leave out "warnings"
author
Ricardo Signes
<rjbs@cpan.org>
Fri, 10 May 2013 18:24:27 +0000
(14:24 -0400)
committer
Ricardo Signes
<rjbs@cpan.org>
Fri, 10 May 2013 18:24:27 +0000
(14:24 -0400)
pod/perldelta.pod
patch
|
blob
|
blame
|
history
diff --git
a/pod/perldelta.pod
b/pod/perldelta.pod
index
582909d
..
7969669
100644
(file)
--- a/
pod/perldelta.pod
+++ b/
pod/perldelta.pod
@@
-41,7
+41,7
@@
Since some features (like C<~~> or C<my $_>) now emit experimental warnings,
and you may want to disable them in code that is also run on perls that do not
recognize these warning categories, consider using the C<if> pragma like this:
- no if $] >= 5.018, "experimental::feature_name";
+ no if $] >= 5.018,
'warnings',
"experimental::feature_name";
Existing experimental features may begin emitting these warnings, too. Please
consult L<perlexperiment> for information on which features are considered