diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-08-25 08:58:42 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-08-25 23:21:29 -0600 |
commit | 5d3d13d10da5429b4c98a44ea398eb3cfb8c457b (patch) | |
tree | 3bfb087559d3d4550910610254f8cda2fb4397eb /utf8.h | |
parent | ab20d70a9a23debea96660523e287da51405d7de (diff) | |
download | perl-5d3d13d10da5429b4c98a44ea398eb3cfb8c457b.tar.gz |
utf8.c: collapse a function parameter
Now that we have a flags parameter, we can get put this parameter as
just another flag, giving a cleaner interface to this internal-only
function. This also renames the flag parameter to <flag_p> to indicate
it needs to be dereferenced.
Diffstat (limited to 'utf8.h')
-rw-r--r-- | utf8.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -24,6 +24,7 @@ /* For _core_swash_init(), internal core use only */ #define _CORE_SWASH_INIT_USER_DEFINED_PROPERTY 0x1 +#define _CORE_SWASH_INIT_RETURN_IF_UNDEF 0x2 #define to_uni_fold(c, p, lenp) _to_uni_fold_flags(c, p, lenp, FOLD_FLAGS_FULL) #define to_utf8_fold(c, p, lenp) _to_utf8_fold_flags(c, p, lenp, \ |