diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-07 16:11:28 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-07 16:11:28 +0000 |
| commit | 87d4cb2553dc6ef97d67320e80567962d0b6c767 (patch) | |
| tree | 5f7ed633fd1ed96f4b613b8e7c4a581ffe7e7184 | |
| parent | f67ba6520591b04362c2e24a5b7bed7e9e53d76f (diff) | |
| download | ruby-87d4cb2553dc6ef97d67320e80567962d0b6c767.tar.gz ruby-87d4cb2553dc6ef97d67320e80567962d0b6c767.tar.xz ruby-87d4cb2553dc6ef97d67320e80567962d0b6c767.zip | |
* object.c (nil_to_s): returns the empty string again.
[ruby-dev:29520]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10878 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | object.c | 6 |
2 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +Thu Sep 7 21:02:56 2006 Yukihiro Matsumoto <matz@ruby-lang.org> + + * object.c (nil_to_s): returns the empty string again. + [ruby-dev:29520] + Thu Sep 7 23:27:05 2006 Nobuyoshi Nakada <nobu@ruby-lang.org> * file.c (path_check_0, fpath_check): disable path check on cygwin. @@ -675,15 +675,15 @@ nil_to_f(VALUE obj) /* * call-seq: - * nil.to_s => "nil" + * nil.to_s => "" * - * Always returns the string "nil". + * Always returns the empty string. */ static VALUE nil_to_s(VALUE obj) { - return rb_str_new2("nil"); + return rb_str_new2(""); } /* |
