mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 16:44:01 +02:00
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
This commit is contained in:
parent
fb1b9a78b7
commit
0ee6aff847
1 changed files with 1 additions and 1 deletions
2
string.c
2
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)) {
|
if (ptr >= RSTRING_PTR(str) && ptr <= RSTRING_END(str)) {
|
||||||
off = ptr - RSTRING_PTR(str);
|
off = ptr - RSTRING_PTR(str);
|
||||||
}
|
}
|
||||||
rb_str_modify(str);
|
str_modify_keep_cr(str);
|
||||||
if (len == 0) return 0;
|
if (len == 0) return 0;
|
||||||
if (STR_EMBED_P(str)) {
|
if (STR_EMBED_P(str)) {
|
||||||
capa = RSTRING_EMBED_LEN_MAX;
|
capa = RSTRING_EMBED_LEN_MAX;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue