mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
gc.c: indent
* gc.c (gc_start_internal): adjust indent. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44032 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0e20c2afa8
commit
761e9c518f
1 changed files with 2 additions and 2 deletions
4
gc.c
4
gc.c
|
@ -5031,9 +5031,9 @@ gc_start_internal(int argc, VALUE *argv, VALUE self)
|
|||
rb_check_keyword_opthash(opt, keyword_ids, 0, 2);
|
||||
|
||||
if ((kwval = rb_hash_lookup2(opt, keyword_syms[0], Qundef)) != Qundef)
|
||||
full_mark = RTEST(kwval);
|
||||
full_mark = RTEST(kwval);
|
||||
if ((kwval = rb_hash_lookup2(opt, keyword_syms[1], Qundef)) != Qundef)
|
||||
immediate_sweep = RTEST(kwval);
|
||||
immediate_sweep = RTEST(kwval);
|
||||
}
|
||||
|
||||
garbage_collect(objspace, full_mark, immediate_sweep, GPR_FLAG_METHOD);
|
||||
|
|
Loading…
Reference in a new issue