diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-09-15 22:02:42 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-09-15 22:45:11 -0700 |
commit | ebd2568602497a1cca32683caa01bc948f2637f1 (patch) | |
tree | f98cc4bf1a7c4521170d6099067cba9c5271eac5 /feature.h | |
parent | 301381dc4c17004a66294b221c6cce2e4e4f1e1f (diff) | |
download | perl-ebd2568602497a1cca32683caa01bc948f2637f1.tar.gz |
Add experimental lexical_subs feature
Diffstat (limited to 'feature.h')
-rw-r--r-- | feature.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -81,6 +81,12 @@ FEATURE_IS_ENABLED("__SUB__")) \ ) +#define FEATURE_LEXSUBS_IS_ENABLED \ + ( \ + CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_CUSTOM && \ + FEATURE_IS_ENABLED("lexsubs") \ + ) + #define FEATURE_UNIEVAL_IS_ENABLED \ ( \ CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_515 \ |