summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Kokubun <[email protected]>2023-07-27 15:28:23 -0700
committerTakashi Kokubun <[email protected]>2023-07-27 15:30:10 -0700
commit97219721752e7cc1eda51131d6a3cd753d37276c ()
treecd797f16d54a35098125e46f2a7564fb1bb45e44
parent5669a28fde3b767953b5a7d6e63cd8e53f0185eb (diff)
Resurrect rb_reg_prepare_re C API
Existing strscan releases rely on this C API. It means that the current Ruby master doesn't work if your Gemfile.lock has strscan unless it's locked to 3.0.7, which is not released yet. To fix it, let's not remove the C API we've exposed to users.
-rw-r--r--include/ruby/re.h21
-rw-r--r--re.c2
2 files changed, 22 insertions, 1 deletions
@@ -106,6 +106,27 @@ long rb_reg_adjust_startpos(VALUE re, VALUE str, long pos, int dir);
VALUE rb_reg_quote(VALUE str);
/**
* Runs a regular expression match using function `match`. Performs preparation,
* error handling, and memory cleanup.
*
@@ -1575,7 +1575,7 @@ rb_reg_prepare_enc(VALUE re, VALUE str, int warn)
return enc;
}
-static regex_t *
rb_reg_prepare_re(VALUE re, VALUE str)
{
int r;