summaryrefslogtreecommitdiff
path: root/object.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-03-07 02:05:08 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-03-07 02:05:08 +0000
commit6645b928266cf7f8139f58b6b260e82f291d8446 (patch)
tree79b669fd89b447f950a4faced7ceebcba65b8f8e /object.c
parent57b3ed4cda8882429590f761f9d545eee88823a3 (diff)
* object.c (inspect_obj): unintended space removal.
[ruby-dev:25810] * eval.c (rb_exec_recursive): should not use NODE in disclosed context. [ruby-dev:25812] * io.c (rb_f_open): need not to check if to_open value is a T_FILE. [ruby-dev:25812] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8098 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'object.c')
-rw-r--r--object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/object.c b/object.c
index 743de94242..b95b097b6a 100644
--- a/object.c
+++ b/object.c
@@ -350,7 +350,7 @@ inspect_obj(obj, str, recur)
int recur;
{
if (recur) {
- rb_str_cat2(str, "...");
+ rb_str_cat2(str, " ...");
}
else {
st_foreach_safe(ROBJECT(obj)->iv_tbl, inspect_i, str);