summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2018-03-01 19:11:43 -0700
committerKarl Williamson <khw@cpan.org>2018-03-01 19:33:51 -0700
commit49cd072660b3b1858be5f27df107b3b42498a3f3 (patch)
tree0c63889b062ac97bb46a3b9797be4006416108bd /proto.h
parentb2f82b52000c3bfe6e6df200c775e2a639d91552 (diff)
downloadperl-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index 34da7987fa..1e35432c46 100644
--- a/proto.h
+++ b/proto.h
@@ -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)