diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-12-25 13:41:06 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-12-25 13:41:06 +0000 |
| commit | 344d74df74e35e35884e2d672953b9bc4db8f5ba (patch) | |
| tree | b05bd5b278f7c0941fc61d6c4f1de1aac0f52d00 /string.c | |
| parent | 1014054c2c28347bda5b90ec87b7ba3bdcb2b54f (diff) | |
| download | ruby-344d74df74e35e35884e2d672953b9bc4db8f5ba.tar.gz ruby-344d74df74e35e35884e2d672953b9bc4db8f5ba.tar.xz ruby-344d74df74e35e35884e2d672953b9bc4db8f5ba.zip | |
* string.c (rb_str_update): don't return any value.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5295 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
| -rw-r--r-- | string.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
