From 892e443cc8f02fc7b15fac0066374be13a0cc808 Mon Sep 17 00:00:00 2001 From: usa Date: Thu, 25 Dec 2003 13:41:06 +0000 Subject: [PATCH] * string.c (rb_str_update): don't return any value. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@5295 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ string.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0cdc277c6c..43e653131b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu Dec 25 22:39:59 2003 NAKAMURA Usaku + + * string.c (rb_str_update): don't return any value. + Thu Dec 25 15:30:17 2003 Yukihiro Matsumoto * string.c (rb_str_update): call rb_str_modify(). diff --git a/string.c b/string.c index 106e0420a8..495cde9b34 100644 --- a/string.c +++ b/string.c @@ -1631,7 +1631,7 @@ rb_str_update(str, beg, len, val) VALUE val; { rb_str_modify(str); - return rb_str_splice(str, beg, len, val); + rb_str_splice(str, beg, len, val); } static void