diff options
author | Karl Williamson <khw@cpan.org> | 2020-10-17 06:55:50 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2020-11-22 20:06:03 -0700 |
commit | c62fdeb784c7643c90d2ea8c2ec0f03a548da338 (patch) | |
tree | 9c5f6ad7fe164633a5a8667402320e12d2755b45 /regexec.c | |
parent | 8dff134de1f0dc51682889d5cf8c25ab7c31bf45 (diff) | |
download | perl-c62fdeb784c7643c90d2ea8c2ec0f03a548da338.tar.gz |
Restrict scope/Shorten some very long macro names
The names were intended to force people to not use them outside their
intended scopes. But by restricting those scopes in the first place, we
don't need such unwieldy names
Diffstat (limited to 'regexec.c')
-rw-r--r-- | regexec.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -118,8 +118,6 @@ static const char non_utf8_target_but_utf8_required[] goto target; \ } STMT_END -#define HAS_NONLATIN1_FOLD_CLOSURE(i) _HAS_NONLATIN1_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(i) - #ifndef STATIC #define STATIC static #endif |