1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* compile.h: fix debug print level.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12685 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2007-07-03 19:04:39 +00:00
parent 1d8ce92a37
commit 590609f255
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Wed Jul 4 04:04:02 2007 Koichi Sasada <ko1@atdot.net>
* compile.h: fix debug print level.
Wed Jul 4 03:52:55 2007 Koichi Sasada <ko1@atdot.net>
* compile.c (iseq_compile_each): support v[&b]= type method call.

View file

@ -61,7 +61,7 @@
#define debug_node_start(node) \
(ruby_debug_print_indent(-1, CPDEBUG, gl_node_level*2), \
ruby_debug_print_node(10, CPDEBUG, "", (NODE *)node), gl_node_level++) \
ruby_debug_print_node(1, CPDEBUG, "", (NODE *)node), gl_node_level++) \
#define debug_node_end() gl_node_level --;