summaryrefslogtreecommitdiff
path: root/embed.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 /embed.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 'embed.h')
-rw-r--r--embed.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/embed.h b/embed.h
index 8f0b74e640..88aa29dec5 100644
--- a/embed.h
+++ b/embed.h
@@ -944,7 +944,7 @@
#define study_chunk(a,b,c,d,e,f,g,h,i,j,k) S_study_chunk(aTHX_ a,b,c,d,e,f,g,h,i,j,k)
# endif
# if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_REGEXEC_C) || defined(PERL_IN_UTF8_C)
-#define _core_swash_init(a,b,c,d,e) Perl__core_swash_init(aTHX_ a,b,c,d,e)
+#define _core_swash_init(a,b,c,d,e,f) Perl__core_swash_init(aTHX_ a,b,c,d,e,f)
# endif
# if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_UTF8_C)
#define _append_range_to_invlist(a,b,c) Perl__append_range_to_invlist(aTHX_ a,b,c)