summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-09-04 14:04:54 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-09-04 14:04:54 +0000
commite5684558262ead5253b9fce36efaea6a6ae6acab (patch)
treed1de4248f3d225352bafeb8b57ab9d7f3bff42b8 /string.c
parent805d6f6f3c95a4407990cbd663f26cfb5171739e (diff)
string.c: grapheme clusters on frozen string
* string.c (rb_str_enumerate_grapheme_clusters): enumerate on shared frozen string. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59743 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/string.c b/string.c
index e71263efef..abaae1e726 100644
--- a/string.c
+++ b/string.c
@@ -8019,6 +8019,7 @@ rb_str_codepoints(VALUE str)
static VALUE
rb_str_enumerate_grapheme_clusters(VALUE str, VALUE ary)
{
+ VALUE orig = str;
regex_t *reg_grapheme_cluster = NULL;
static regex_t *reg_grapheme_cluster_utf8 = NULL;
int encidx = ENCODING_GET(str);
@@ -8046,6 +8047,7 @@ rb_str_enumerate_grapheme_clusters(VALUE str, VALUE ary)
}
}
+ if (!ary) str = rb_str_new_frozen(str);
ptr = RSTRING_PTR(str);
end = RSTRING_END(str);
@@ -8060,10 +8062,11 @@ rb_str_enumerate_grapheme_clusters(VALUE str, VALUE ary)
ENUM_ELEM(ary, rb_enc_str_new(ptr, len, enc));
ptr += len;
}
+ RB_GC_GUARD(str);
if (ary)
return ary;
else
- return str;
+ return orig;
}
/*