summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-20 14:37:35 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-20 14:37:35 +0000
commit228b72b7a0d746e253eab509dd2c8052ad45ac18 (patch)
tree3b51517e6e650285b411eef014cce1dd4a8e2920 /string.c
parent4b992c1341c64779f9257a497840a041a72c9b95 (diff)
* string.c (rb_str_splice, rb_str_upcase_bang): cleanups.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7343 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/string.c b/string.c
index e02fb504b8..acfd6f4bf9 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 <i>str</i> 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"
*/