aboutsummaryrefslogtreecommitdiffstats
path: root/debug.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-08-15 04:52:56 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-08-15 04:52:56 +0000
commitfe898043ccc99f3e127c63e0c18f4d2233bfa555 (patch)
treee3365ee32256f9d0be33e7093e418f7be34e5fc7 /debug.c
parent4edc1d8c9c234303096e6e5a35e87944b50d247d (diff)
downloadruby-fe898043ccc99f3e127c63e0c18f4d2233bfa555.tar.gz
* parse.y: fix rules around f_margs. "make test" passes all tests.
* bootstraptest/test_block.rb: add some tests for above. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12937 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'debug.c')
-rw-r--r--debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug.c b/debug.c
index b5a014e1cb..9943935e21 100644
--- a/debug.c
+++ b/debug.c
@@ -33,7 +33,7 @@ ruby_debug_print_value(int level, int debug_level, const char *header, VALUE obj
VALUE str;
str = rb_inspect(obj);
fprintf(stderr, "DBG> %s: %s\n", header,
- obj == -1 ? "" : StringValueCStr(str));
+ obj == -1 ? "" : StringValueCStr(str));
fflush(stderr);
}
return obj;