diff options
author | Karl Williamson <khw@cpan.org> | 2017-08-28 17:51:06 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2017-11-08 20:52:52 -0700 |
commit | 5c1ff086bb032fe1320e5cd3a81b4f3841481d44 (patch) | |
tree | 026b107da6f829a76b73d097e9bfb62bbbd8ac5b /perl.h | |
parent | 5792c6421a2dffa32c7169e0ebe482427b43a1b8 (diff) | |
download | perl-5c1ff086bb032fe1320e5cd3a81b4f3841481d44.tar.gz |
embed.fnc: Change fcn from A to X
This function is marked as accessible anywhere, but experimental, and
so is changeable at any time without notice, and its name begins with an
underscore to indicate its private nature. I didn't know at the time I
wrote it that we have an existing mechanism to deal with functions whose
only use should be a public macro. This changes to use that mechanism.
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5502,10 +5502,10 @@ typedef struct am_table_short AMTS; # define IN_LC_COMPILETIME(category) \ (IN_LC_ALL_COMPILETIME || (IN_LC_PARTIAL_COMPILETIME \ - && _is_in_locale_category(TRUE, (category)))) + && Perl__is_in_locale_category(aTHX_ TRUE, (category)))) # define IN_LC_RUNTIME(category) \ (IN_LC_ALL_RUNTIME || (IN_LC_PARTIAL_RUNTIME \ - && _is_in_locale_category(FALSE, (category)))) + && Perl__is_in_locale_category(aTHX_ FALSE, (category)))) # define IN_LC(category) \ (IN_LC_COMPILETIME(category) || IN_LC_RUNTIME(category)) |