summaryrefslogtreecommitdiff
path: root/regen
diff options
context:
space:
mode:
authorRicardo Signes <rjbs@semiotic.systems>2021-10-09 17:12:31 -0400
committerRicardo Signes <rjbs@semiotic.systems>2021-11-02 14:19:43 -0400
commitcdba169fcf0819be8f02efe3edc7aac796fb9433 (patch)
tree190c00bf8c027ae42a05669251bd0c4cca71b2b0 /regen
parent731a976bef573afb7b94562b4b34473f6b714d5d (diff)
downloadperl-cdba169fcf0819be8f02efe3edc7aac796fb9433.tar.gz
feature: remove indirect and multidimensional in v5.36
Diffstat (limited to 'regen')
-rwxr-xr-xregen/feature.pl7
1 files changed, 5 insertions, 2 deletions
diff --git a/regen/feature.pl b/regen/feature.pl
index a07986e38a..a0595f2f5d 100755
--- a/regen/feature.pl
+++ b/regen/feature.pl
@@ -56,7 +56,10 @@ use constant V5_11 => sort ( +V5_9_5, qw{unicode_strings} );
use constant V5_15 => sort ( +V5_11, qw{unicode_eval evalbytes current_sub fc} );
use constant V5_23 => sort ( +V5_15, qw{postderef_qq} );
use constant V5_27 => sort ( +V5_23, qw{bitwise} );
-use constant V5_35 => sort ( grep {; $_ ne 'switch' } +V5_27);
+
+use constant V5_35 => sort grep {; $_ ne 'switch'
+ && $_ ne 'indirect'
+ && $_ ne 'multidimensional' } +V5_27;
my %feature_bundle = (
all => [ sort keys %feature ],
@@ -482,7 +485,7 @@ read_only_bottom_close_and_rename($h);
__END__
package feature;
-our $VERSION = '1.68';
+our $VERSION = '1.69';
FEATURES