summaryrefslogtreecommitdiff
path: root/feature.h
diff options
context:
space:
mode:
authorAaron Crane <arc@cpan.org>2015-07-13 12:58:51 +0100
committerAaron Crane <arc@cpan.org>2015-07-13 13:42:01 +0100
commit1c2511e0acc5a19f9f52fb2be58a4e2750213e6f (patch)
tree0ddb6e3d668f6fae267867032bcea8fc9d51516e /feature.h
parent41349288283615495b6de1523783d60c9fd7310b (diff)
downloadperl-1c2511e0acc5a19f9f52fb2be58a4e2750213e6f.tar.gz
Make postfix dereferencing work without the postderef feature
The feature still exists, for compatibility with code that tries to enable it, but it has no effect. The postderef_qq feature still exists, however.
Diffstat (limited to 'feature.h')
-rw-r--r--feature.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/feature.h b/feature.h
index dd98058256..a527e06e84 100644
--- a/feature.h
+++ b/feature.h
@@ -78,9 +78,8 @@
#define FEATURE_POSTDEREF_IS_ENABLED \
( \
- CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_523 \
- || (CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_CUSTOM && \
- FEATURE_IS_ENABLED("postderef")) \
+ CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_CUSTOM && \
+ FEATURE_IS_ENABLED("postderef") \
)
#define FEATURE_ARYBASE_IS_ENABLED \