From e123187a1c7666bc2bf1eab209057d9d3fe83f66 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Mon, 5 May 2014 19:37:58 -0600 Subject: utf8.c: Move a static function to inline.h This is in preparation for it being called from outside utf8.c. It is renamed to have a leading underscore to emphasize its private nature --- embed.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'embed.h') diff --git a/embed.h b/embed.h index 0e33affbc4..5ad8ef6589 100644 --- a/embed.h +++ b/embed.h @@ -1027,6 +1027,7 @@ #ifdef PERL_CORE #define Slab_Alloc(a) Perl_Slab_Alloc(aTHX_ a) #define Slab_Free(a) Perl_Slab_Free(aTHX_ a) +#define _is_utf8_char_slow S__is_utf8_char_slow #define allocmy(a,b,c) Perl_allocmy(aTHX_ a,b,c) #define amagic_is_enabled(a) Perl_amagic_is_enabled(aTHX_ a) #define apply(a,b,c) Perl_apply(aTHX_ a,b,c) @@ -1694,7 +1695,6 @@ # endif # if defined(PERL_IN_UTF8_C) #define check_locale_boundary_crossing(a,b,c,d) S_check_locale_boundary_crossing(aTHX_ a,b,c,d) -#define is_utf8_char_slow S_is_utf8_char_slow #define is_utf8_common(a,b,c,d) S_is_utf8_common(aTHX_ a,b,c,d) #define swash_scan_list_line(a,b,c,d,e,f,g) S_swash_scan_list_line(aTHX_ a,b,c,d,e,f,g) #define swatch_get(a,b,c) S_swatch_get(aTHX_ a,b,c) -- cgit v1.2.1