diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-12-22 22:51:50 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-12-24 09:25:20 -0800 |
commit | 1b6e87415847fb00091c22c1eeb1dbd6cece377a (patch) | |
tree | e472361005fa19679ae63b57df76e11b48e71044 /feature.h | |
parent | ef744b2941d9092cc1d28a001826c37cdc49b359 (diff) | |
download | perl-1b6e87415847fb00091c22c1eeb1dbd6cece377a.tar.gz |
Make MAX_FEATURE_LEN reflect reality
unicode_strings was not the longest string. We can determine it auto-
matically, now that this macro is in a generated file.
Diffstat (limited to 'feature.h')
-rw-r--r-- | feature.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ & HINT_LOCALIZE_HH) \ && Perl_feature_is_enabled(aTHX_ STR_WITH_LEN(name))) /* The longest string we pass in. */ -#define MAX_FEATURE_LEN (sizeof("unicode_strings")-1) +#define MAX_FEATURE_LEN (sizeof("evalbytes")-1) #define FEATURE_SAY_IS_ENABLED \ ( \ |