summaryrefslogtreecommitdiffhomepage
path: root/src/array.c
diff options
context:
space:
mode:
authorYukihiro Matz Matsumoto <[email protected]>2013-03-26 16:48:26 +0900
committerYukihiro Matz Matsumoto <[email protected]>2013-03-26 16:48:26 +0900
commit87d7fc616504dff16a22e24bc5fa67aae2be0d30 (patch)
tree28e7290b548a4aff1939b6289736efec5d7fcb4d /src/array.c
parenta7842b6451cdb20c9a5aeebf81387e538aa0facf (diff)
parent2d91803528d14b39868fa3c16f9293d1f34e675c (diff)
downloadmruby-87d7fc616504dff16a22e24bc5fa67aae2be0d30.tar.gz
mruby-87d7fc616504dff16a22e24bc5fa67aae2be0d30.zip
Merge branch 'master' of github.com:mruby/mruby
Diffstat (limited to 'src/array.c')
-rw-r--r--src/array.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/array.c b/src/array.c
index 5f588e195..f9cc9119c 100644
--- a/src/array.c
+++ b/src/array.c
@@ -952,11 +952,7 @@ static mrb_value
mrb_ary_inspect(mrb_state *mrb, mrb_value ary)
{
if (RARRAY_LEN(ary) == 0) return mrb_str_new(mrb, "[]", 2);
- #if 0 /* THREAD */
- return mrb_exec_recursive(inspect_ary_r, ary, 0);
- #else
return inspect_ary(mrb, ary, mrb_ary_new(mrb));
- #endif
}
static mrb_value