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 /embed.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 'embed.h')
-rw-r--r-- | embed.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -793,7 +793,7 @@ #define warn_nocontext Perl_warn_nocontext #define warner_nocontext Perl_warner_nocontext #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) #define _new_invlist_C_array(a) Perl__new_invlist_C_array(aTHX_ a) #endif #if defined(PERL_MAD) |