* adjust indent

This commit is contained in:
Nobuyoshi Nakada 2025-06-17 00:42:46 +09:00
parent c09619d911
commit a60bf9e693
No known key found for this signature in database
GPG key ID: 3582D74E1FEE4465
Notes: git 2025-06-17 04:18:04 +00:00
5 changed files with 8 additions and 5 deletions

View file

@ -13384,7 +13384,8 @@ outer_variable_cmp(const void *a, const void *b, void *arg)
if (!ap->name) {
return -1;
} else if (!bp->name) {
}
else if (!bp->name) {
return 1;
}

1
hash.c
View file

@ -3872,7 +3872,6 @@ rb_hash_values(VALUE hash)
}
rb_ary_set_len(values, size);
}
else {
rb_hash_foreach(hash, values_i, values);
}

3
proc.c
View file

@ -1562,7 +1562,8 @@ rb_sym_to_proc(VALUE sym)
RARRAY_ASET(sym_proc_cache, index, procval);
return RB_GC_GUARD(procval);
} else {
}
else {
return sym_proc_new(rb_cProc, sym);
}
}

3
re.c
View file

@ -3507,7 +3507,8 @@ rb_reg_regcomp(VALUE str)
return reg_cache;
return reg_cache = rb_reg_new_str(str, 0);
} else {
}
else {
return rb_reg_new_str(str, 0);
}
}

View file

@ -6229,7 +6229,8 @@ threadptr_interrupt_exec_exec(rb_thread_t *th)
if (task) {
if (task->flags & rb_interrupt_exec_flag_new_thread) {
rb_thread_create(task->func, task->data);
} else {
}
else {
(*task->func)(task->data);
}
ruby_xfree(task);