diff options
author | Karl Williamson <public@khwilliamson.com> | 2014-01-06 12:22:02 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2014-01-09 14:05:45 -0700 |
commit | f25ce84407dda38dcbb46145067fe57d29d1ef7c (patch) | |
tree | fa4f2e50a7f364e749a868b3cff169258f9a880b /embed.h | |
parent | 7b8dd5f447fb612eaa2eb9b569548fa3d6a2a352 (diff) | |
download | perl-f25ce84407dda38dcbb46145067fe57d29d1ef7c.tar.gz |
isWORDCHAR_uni(), isDIGIT_utf8() etc no longer go out to disk
Previous commits in this series have caused all the POSIX classes to be
completely specified at C compile time. This allows us to revise the
base function used by all these macros to use these definitions,
avoiding reading them in from disk.
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1677,7 +1677,7 @@ # 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) S_is_utf8_common(aTHX_ a,b,c) +#define is_utf8_common(a,b,c,d) S_is_utf8_common(aTHX_ a,b,c,d) #define swatch_get(a,b,c) S_swatch_get(aTHX_ a,b,c) #define to_lower_latin1(a,b,c) S_to_lower_latin1(aTHX_ a,b,c) # endif |