diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-12-19 13:58:46 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-12-19 13:58:46 +0000 |
commit | 13a7998c934604b70722fbb6c3a73e74f3b8a490 (patch) | |
tree | 87ec67ca857d5c407cd563babe4ee753dbcd7037 /lib/feature.pm | |
parent | 5e49647a0859f6593db3487b4813b840236eca20 (diff) | |
download | perl-13a7998c934604b70722fbb6c3a73e74f3b8a490.tar.gz |
Make -E require 5.11 features
p4raw-id: //depot/perl@32648
Diffstat (limited to 'lib/feature.pm')
-rw-r--r-- | lib/feature.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/feature.pm b/lib/feature.pm index a62352b7c5..f4e2ef87e8 100644 --- a/lib/feature.pm +++ b/lib/feature.pm @@ -9,6 +9,8 @@ my %feature = ( state => "feature_state", ); +# NB. the latest bundle must be loaded by the -E switch (see toke.c) + my %feature_bundle = ( "5.10.0" => [qw(switch say state)], "5.11.0" => [qw(switch say state)], |