diff options
author | Karl Williamson <khw@cpan.org> | 2020-02-12 20:53:20 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2020-02-19 22:09:48 -0700 |
commit | 60d8e2bf61eb07095157b2e3164e614e0b0dc4b3 (patch) | |
tree | 1db5fad996de9284f93de3c3bd3bb0dd158f1f8d /embed.h | |
parent | f0ac8a377ab01ad6936776b0c73d0c1eab98f782 (diff) | |
download | perl-60d8e2bf61eb07095157b2e3164e614e0b0dc4b3.tar.gz |
regcomp.c: Create wrapper fcn for re_op_compile
This does the bulk of re_compile(), but is a private entry point,
meaning it takes an extra parameter, and a future commit will call it
from another place.
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1045,6 +1045,7 @@ #define parse_lparen_question_flags(a) S_parse_lparen_question_flags(aTHX_ a) #define parse_uniprop_string(a,b,c,d,e,f,g,h,i) Perl_parse_uniprop_string(aTHX_ a,b,c,d,e,f,g,h,i) #define populate_ANYOF_from_invlist(a,b) S_populate_ANYOF_from_invlist(aTHX_ a,b) +#define re_op_compile_wrapper(a,b,c) S_re_op_compile_wrapper(aTHX_ a,b,c) #define reg(a,b,c,d) S_reg(aTHX_ a,b,c,d) #define reg2Lanode(a,b,c,d) S_reg2Lanode(aTHX_ a,b,c,d) #define reg_node(a,b) S_reg_node(aTHX_ a,b) |