summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-04-18 07:55:04 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-04-18 07:55:04 +0000
commit0ee6aff847ecccdcfda911b54ad149a1f2543ad2 (patch)
tree9c467221c0857e861d5d83ccf7851998d77ed3aa /string.c
parentfb1b9a78b7a392787e2518f029552c1a2175ee82 (diff)
string.c: keep code range
* string.c (str_buf_cat): keep code range if possible. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45621 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/string.c b/string.c
index 6294ea8d1a..515a340adc 100644
--- a/string.c
+++ b/string.c
@@ -2021,7 +2021,7 @@ str_buf_cat(VALUE str, const char *ptr, long len)
if (ptr >= RSTRING_PTR(str) && ptr <= RSTRING_END(str)) {
off = ptr - RSTRING_PTR(str);
}
- rb_str_modify(str);
+ str_modify_keep_cr(str);
if (len == 0) return 0;
if (STR_EMBED_P(str)) {
capa = RSTRING_EMBED_LEN_MAX;