diff options
author | Karl Williamson <khw@cpan.org> | 2018-03-01 19:11:43 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2018-03-01 19:33:51 -0700 |
commit | 49cd072660b3b1858be5f27df107b3b42498a3f3 (patch) | |
tree | 0c63889b062ac97bb46a3b9797be4006416108bd /proto.h | |
parent | b2f82b52000c3bfe6e6df200c775e2a639d91552 (diff) | |
download | perl-49cd072660b3b1858be5f27df107b3b42498a3f3.tar.gz |
Remove parameter from isSCRIPT_RUN
Daniel Dragan pointed out that this parameter is unused (the commits
that want it didn't get into 5.28), and is causing a table to be
duplicated all over the place, so just remove it for now.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4385,7 +4385,7 @@ PERL_STATIC_INLINE STRLEN S_sv_or_pv_pos_u2b(pTHX_ SV *sv, const char *pv, STRLE #endif #endif #if defined(PERL_CORE) || defined(PERL_EXT) -PERL_CALLCONV bool Perl_isSCRIPT_RUN(pTHX_ const U8 *s, const U8 *send, const bool utf8_target, SCX_enum * ret_script) +PERL_CALLCONV bool Perl_isSCRIPT_RUN(pTHX_ const U8 *s, const U8 *send, const bool utf8_target) __attribute__warn_unused_result__; #define PERL_ARGS_ASSERT_ISSCRIPT_RUN \ assert(s); assert(send) |