summaryrefslogtreecommitdiff
path: root/proto.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 /proto.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 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index 19f58a5465..2007ef7dea 100644
--- a/proto.h
+++ b/proto.h
@@ -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);