summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-11-28 08:24:07 -0700
committerKarl Williamson <public@khwilliamson.com>2012-01-13 09:58:35 -0700
commit934970aa10783f6f60f8eedab95c710f4d4eaa35 (patch)
tree7c4032202469d43cb95b8e8ef73297b224e6d011 /proto.h
parent4065ba03dae80110ad18a5eacfe7be6b89ffc249 (diff)
downloadperl-934970aa10783f6f60f8eedab95c710f4d4eaa35.tar.gz
utf8.c: Add flag to swash_init() to not croak on error
This adds the capability, to be used in future commits, for swash_ini() to return NULL instead of croaking if it can't find a property, so that the caller can choose how to handle the situation.
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 c4dc4b326c..0c6a675bed 100644
--- a/proto.h
+++ b/proto.h
@@ -6530,7 +6530,7 @@ STATIC I32 S_study_chunk(pTHX_ struct RExC_state_t *pRExC_state, regnode **scanp
#endif
#if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_REGEXEC_C) || defined(PERL_IN_UTF8_C)
-PERL_CALLCONV SV* Perl__core_swash_init(pTHX_ const char* pkg, const char* name, SV* listsv, I32 minbits, I32 none)
+PERL_CALLCONV SV* Perl__core_swash_init(pTHX_ const char* pkg, const char* name, SV* listsv, I32 minbits, I32 none, bool return_if_undef)
__attribute__nonnull__(pTHX_1)
__attribute__nonnull__(pTHX_2)
__attribute__nonnull__(pTHX_3);