Skip to content

Commit

Permalink
* expand tabs.
Browse files Browse the repository at this point in the history
  • Loading branch information
matzbot committed Aug 13, 2019
1 parent ac656bc commit aec9341
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions eval.c
Expand Up @@ -120,8 +120,8 @@ ruby_options(int argc, char **argv)
SAVE_ROOT_JMPBUF(GET_THREAD(), iseq = ruby_process_options(argc, argv));
}
else {
rb_ec_clear_current_thread_trace_func(ec);
state = error_handle(ec, state);
rb_ec_clear_current_thread_trace_func(ec);
state = error_handle(ec, state);
iseq = (void *)INT2FIX(state);
}
EC_POP_TAG();
Expand All @@ -133,7 +133,7 @@ rb_ec_teardown(rb_execution_context_t *ec)
{
EC_PUSH_TAG(ec);
if (EC_EXEC_TAG() == TAG_NONE) {
rb_vm_trap_exit(rb_ec_vm_ptr(ec));
rb_vm_trap_exit(rb_ec_vm_ptr(ec));
}
EC_POP_TAG();
rb_ec_exec_end_proc(ec);
Expand Down Expand Up @@ -195,7 +195,7 @@ ruby_cleanup(volatile int ex)
rb_set_safe_level_force(0);
ruby_init_stack(&errs[STACK_UPPER(errs, 0, 1)]);

SAVE_ROOT_JMPBUF(th, rb_ec_teardown(th->ec));
SAVE_ROOT_JMPBUF(th, rb_ec_teardown(th->ec));

step_1: step++;
/* protect from Thread#raise */
Expand Down
2 changes: 1 addition & 1 deletion eval_jump.c
Expand Up @@ -121,7 +121,7 @@ rb_ec_exec_end_proc(rb_execution_context_t * ec)
}
else {
EC_TMPPOP_TAG();
error_handle(ec, state);
error_handle(ec, state);
if (!NIL_P(ec->errinfo)) errinfo = ec->errinfo;
EC_REPUSH_TAG();
goto again;
Expand Down
2 changes: 1 addition & 1 deletion gc.c
Expand Up @@ -7130,7 +7130,7 @@ gc_rest(rb_objspace_t *objspace)
if (marking || sweeping) {
gc_enter(objspace, "gc_rest");

if (RGENGC_CHECK_MODE >= 2) gc_verify_internal_consistency(objspace);
if (RGENGC_CHECK_MODE >= 2) gc_verify_internal_consistency(objspace);

if (is_incremental_marking(objspace)) {
PUSH_MARK_FUNC_DATA(NULL);
Expand Down

0 comments on commit aec9341

Please sign in to comment.