diff options
author | Aaron Crane <arc@cpan.org> | 2015-07-13 12:58:51 +0100 |
---|---|---|
committer | Aaron Crane <arc@cpan.org> | 2015-07-13 13:42:01 +0100 |
commit | 1c2511e0acc5a19f9f52fb2be58a4e2750213e6f (patch) | |
tree | 0ddb6e3d668f6fae267867032bcea8fc9d51516e /feature.h | |
parent | 41349288283615495b6de1523783d60c9fd7310b (diff) | |
download | perl-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.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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 \ |