summaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-07-28 07:33:21 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-07-28 07:33:21 +0900
commit1d1f98d49c9908f4e3928e582d31fd2e9f252f92 (patch)
treeaf2d132203fb2ce0911f6fbcaeb42755cb7ef1ea /internal.h
parentadf13625aeb86961123911cba85c993417a5762a (diff)
Reuse match data
* string.c (rb_str_split_m): reuse occupied match data. [Bug #16024]
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal.h b/internal.h
index 4b4352d182..0c6341aad5 100644
--- a/internal.h
+++ b/internal.h
@@ -2040,6 +2040,7 @@ long rb_reg_search0(VALUE, VALUE, long, int, int);
VALUE rb_reg_match_p(VALUE re, VALUE str, long pos);
bool rb_reg_start_with_p(VALUE re, VALUE str);
void rb_backref_set_string(VALUE string, long pos, long len);
+void rb_match_unbusy(VALUE);
int rb_match_count(VALUE match);
int rb_match_nth_defined(int nth, VALUE match);
VALUE rb_reg_new_ary(VALUE ary, int options);