summaryrefslogtreecommitdiff
path: root/pod/perllexwarn.pod
diff options
context:
space:
mode:
Diffstat (limited to 'pod/perllexwarn.pod')
-rw-r--r--pod/perllexwarn.pod17
1 files changed, 3 insertions, 14 deletions
diff --git a/pod/perllexwarn.pod b/pod/perllexwarn.pod
index 3b6b827a36..c6494dbbb7 100644
--- a/pod/perllexwarn.pod
+++ b/pod/perllexwarn.pod
@@ -220,7 +220,9 @@ The current hierarchy is:
|
+- exiting
|
- +- experimental
+ +- experimental --+
+ | |
+ | +- experimental::lexical_subs
|
+- glob
|
@@ -337,19 +339,6 @@ Note: In Perl 5.6.1, the lexical warnings category "deprecated" was a
sub-category of the "syntax" category. It is now a top-level category
in its own right.
-=head2 Individual Warning IDs
-
-The "experimental" warnings category, added in Perl 5.18,
-contains IDs for individual warnings, so that each warning can
-be turned on or off. Currently there is only one such warning,
-labelled "experimental:lexical_subs". You enable and disable
-it like this:
-
- use warnings "experimental:lexical_subs";
- no warnings "experimental:lexical_subs";
-
-The plan is to extend this convention to all warnings in a future release.
-
=head2 Fatal Warnings
X<warning, fatal>