diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-15 04:52:56 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-15 04:52:56 +0000 |
commit | fe898043ccc99f3e127c63e0c18f4d2233bfa555 (patch) | |
tree | e3365ee32256f9d0be33e7093e418f7be34e5fc7 /debug.c | |
parent | 4edc1d8c9c234303096e6e5a35e87944b50d247d (diff) | |
download | ruby-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |