summaryrefslogtreecommitdiff
path: root/embed.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2014-01-06 13:41:46 -0700
committerKarl Williamson <public@khwilliamson.com>2014-01-09 14:05:45 -0700
commitb24b43f7631ee39f0260fc7bba01dd65715f5aff (patch)
treeb9ad83b5668d976228272e87dd9a158e505f38b3 /embed.h
parentf25ce84407dda38dcbb46145067fe57d29d1ef7c (diff)
downloadperl-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/embed.h b/embed.h
index e48b2417e0..baf1030a18 100644
--- a/embed.h
+++ b/embed.h
@@ -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)