From 4b64cf4ab40edce29a9b7f51d62eb82a0add5c66 Mon Sep 17 00:00:00 2001 From: eban Date: Sat, 20 Nov 2004 14:37:35 +0000 Subject: * string.c (rb_str_splice, rb_str_upcase_bang): cleanups. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7343 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- string.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/string.c b/string.c index e02fb504b..acfd6f4bf 100644 --- a/string.c +++ b/string.c @@ -1650,7 +1650,6 @@ rb_str_splice(str, beg, len, val) memmove(RSTRING(str)->ptr + beg + RSTRING(val)->len, RSTRING(str)->ptr + beg + len, RSTRING(str)->len - (beg + len)); - rb_str_modify(str); } if (RSTRING(str)->len < beg && len < 0) { MEMZERO(RSTRING(str)->ptr + RSTRING(str)->len, char, -len); @@ -2750,7 +2749,6 @@ rb_str_upcase_bang(str) * Returns a copy of str with all lowercase letters replaced with their * uppercase counterparts. The operation is locale insensitive---only * characters ``a'' to ``z'' are affected. - rb_str_modify(str); * * "hEllO".upcase #=> "HELLO" */ -- cgit