diff options
author | Karl Williamson <public@khwilliamson.com> | 2014-01-06 13:41:46 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2014-01-09 14:05:45 -0700 |
commit | b24b43f7631ee39f0260fc7bba01dd65715f5aff (patch) | |
tree | b9ad83b5668d976228272e87dd9a158e505f38b3 /proto.h | |
parent | f25ce84407dda38dcbb46145067fe57d29d1ef7c (diff) | |
download | perl-b24b43f7631ee39f0260fc7bba01dd65715f5aff.tar.gz |
IDStart and IDCont no longer go out to disk
These are the base names for various macros used in parsing identifiers.
Prior to this patch, parsing a code point above Latin1 caused loading
disk files. This patch causes all the information to be compiled into
the Perl binary.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6950,7 +6950,7 @@ PERL_CALLCONV void Perl__invlist_dump(pTHX_ PerlIO *file, I32 level, const char* assert(file); assert(indent); assert(invlist) #endif -#if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_PERL_C) +#if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_PERL_C) || defined(PERL_IN_UTF8_C) PERL_CALLCONV SV* Perl__new_invlist_C_array(pTHX_ const UV* const list) __attribute__warn_unused_result__ __attribute__nonnull__(pTHX_1); |