diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-09-15 16:31:19 -0700 |
---|---|---|
committer | Ricardo Signes <rjbs@cpan.org> | 2013-10-05 14:20:09 -0400 |
commit | 158beccad252a25c107551be283bdc27e2729d29 (patch) | |
tree | ff4c51a00dac5b407121b974270fda0c896c7eb8 /feature.h | |
parent | eae81d973bc62051b9fbdc6adab6609b87c5f670 (diff) | |
download | perl-158beccad252a25c107551be283bdc27e2729d29.tar.gz |
Add postderef_qq feature feature
Diffstat (limited to 'feature.h')
-rw-r--r-- | feature.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -27,7 +27,7 @@ & HINT_LOCALIZE_HH) \ ? Perl_feature_is_enabled(aTHX_ STR_WITH_LEN(name)) : FALSE) /* The longest string we pass in. */ -#define MAX_FEATURE_LEN (sizeof("evalbytes")-1) +#define MAX_FEATURE_LEN (sizeof("postderef_qq")-1) #define FEATURE_FC_IS_ENABLED \ ( \ @@ -93,6 +93,12 @@ FEATURE_IS_ENABLED("lexsubs") \ ) +#define FEATURE_POSTDEREF_QQ_IS_ENABLED \ + ( \ + CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_CUSTOM && \ + FEATURE_IS_ENABLED("postderef_qq") \ + ) + #define FEATURE_UNIEVAL_IS_ENABLED \ ( \ CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_515 \ |