diff options
author | Karl Williamson <khw@cpan.org> | 2019-10-02 12:33:01 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2019-11-06 21:22:24 -0700 |
commit | f534d5462959256391e14ee587e98cbc036c9e4a (patch) | |
tree | 7b017a252461ebc1fc20ffd214ae519663c70e30 /embed.h | |
parent | dc8faf6bad9ccc8bd6101ba9aa256e7146845799 (diff) | |
download | perl-f534d5462959256391e14ee587e98cbc036c9e4a.tar.gz |
doop.c: Add a parameter to a few fcns
instead of deriving it each time from inside the function. This is in
preparation for future commits.
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1601,11 +1601,11 @@ #define openn_setup(a,b,c,d,e,f) S_openn_setup(aTHX_ a,b,c,d,e,f) # endif # if defined(PERL_IN_DOOP_C) -#define do_trans_complex(a) S_do_trans_complex(aTHX_ a) +#define do_trans_complex(a,b) S_do_trans_complex(aTHX_ a,b) #define do_trans_complex_utf8(a) S_do_trans_complex_utf8(aTHX_ a) -#define do_trans_count(a) S_do_trans_count(aTHX_ a) +#define do_trans_count(a,b) S_do_trans_count(aTHX_ a,b) #define do_trans_count_utf8(a) S_do_trans_count_utf8(aTHX_ a) -#define do_trans_simple(a) S_do_trans_simple(aTHX_ a) +#define do_trans_simple(a,b) S_do_trans_simple(aTHX_ a,b) #define do_trans_simple_utf8(a) S_do_trans_simple_utf8(aTHX_ a) # endif # if defined(PERL_IN_DUMP_C) |