diff options
author | Karl Williamson <khw@cpan.org> | 2016-09-10 09:00:03 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2016-09-17 17:22:26 -0600 |
commit | 83dc0f42cb8bfe955e45a5b44b989daddf87570a (patch) | |
tree | b33035c07d9ce90534bf99ae4cb5d2561ee7944e /embed.h | |
parent | 062b685031576af47e0f0097d66e7274cccc443f (diff) | |
download | perl-83dc0f42cb8bfe955e45a5b44b989daddf87570a.tar.gz |
utf8.c: Extract duplicate code to common fcn
Actually the code isn't quite duplicate, but should be because one
instance is wrong. This failure would only show up on EBCDIC platforms.
Tests are coming in a future commit.
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1817,6 +1817,7 @@ #define _to_utf8_case(a,b,c,d,e,f,g) S__to_utf8_case(aTHX_ a,b,c,d,e,f,g) #define check_locale_boundary_crossing(a,b,c,d) S_check_locale_boundary_crossing(aTHX_ a,b,c,d) #define is_utf8_common(a,b,c,d) S_is_utf8_common(aTHX_ a,b,c,d) +#define is_utf8_cp_above_31_bits S_is_utf8_cp_above_31_bits #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) #define to_lower_latin1 S_to_lower_latin1 |