summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-20 09:23:53 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-20 09:23:53 +0000
commit82ea308dcf767a779c7b3efd930f8d13ea50a5aa (patch)
tree20925c753a77b76e43f8580cdbccbb76ab3387dc /string.c
parent407d2fb2980e338dc25903800fd56080ad5b7c6f (diff)
downloadruby_1_8_5.tar.gz
merge revision(s) 17483:ruby_1_8_5
* string.c (rb_str_buf_append): should infect. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_5@17484 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/string.c b/string.c
index 4f27d431ff..f0cea48267 100644
--- a/string.c
+++ b/string.c
@@ -775,7 +775,9 @@ VALUE
rb_str_buf_append(str, str2)
VALUE str, str2;
{
- return str_buf_cat(str, RSTRING(str2)->ptr, RSTRING(str2)->len);
+ str_buf_cat(str, RSTRING(str2)->ptr, RSTRING(str2)->len);
+ OBJ_INFECT(str, str2);
+ return str;
}
VALUE