diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-12-22 10:10:53 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-12-24 09:25:13 -0800 |
commit | 61d30f47d59933fc5eb461d573a3a961fa08aa2b (patch) | |
tree | d8e24edc3c66b02b531b3ea8689666690caf2d1b /lib | |
parent | 67bdaa9e280ffc7971297e951d22b899b3dacd93 (diff) | |
download | perl-61d30f47d59933fc5eb461d573a3a961fa08aa2b.tar.gz |
Use only \w+ for internal feature names
This will make it possible to create macros for each.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/feature.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/feature.pm b/lib/feature.pm index 34727f0b2e..d68c8ec118 100644 --- a/lib/feature.pm +++ b/lib/feature.pm @@ -18,7 +18,7 @@ my %feature = ( ); my %default_feature = ( - array_base => 'feature_no$[', + array_base => 'feature_noarybase', ); our %feature_bundle = ( |