summaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authorcharliesome <charliesome@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-25 23:46:05 +0000
committercharliesome <charliesome@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-25 23:46:05 +0000
commita77206582e9372d748db3bbc85c9c3ab0c6681db (patch)
tree1610591c9696fb751b8d31eec1e24b985cf68d59 /internal.h
parentebd9f1d0e485972ef778f5c7251b0e52694f3979 (diff)
Stop allocating backref strings within gsub's search loop
* internal.h: add prototype for rb_reg_search0 * re.c: rename rb_reg_search to rb_reg_search0, add set_backref_str argument to allow callers to indicate that they don't require the backref string to be allocated * string.c: don't allocate backref str if replacement string is provided Closes GH-578. [Bug #9676] [ruby-core:61682] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45414 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/internal.h b/internal.h
index b40af16b48..f72a7921ee 100644
--- a/internal.h
+++ b/internal.h
@@ -978,6 +978,9 @@ VALUE rb_gcd_normal(VALUE self, VALUE other);
VALUE rb_gcd_gmp(VALUE x, VALUE y);
#endif
+/* re.c */
+long rb_reg_search0(VALUE, VALUE, long, int, int);
+
/* util.c */
extern const signed char ruby_digit36_to_number_table[];