ruby-changes:73376
From: Nobuyoshi <ko1@a...>
Date: Fri, 2 Sep 2022 14:50:15 +0900 (JST)
Subject: [ruby-changes:73376] 92d2476208 (master): Adjust styles [ci skip]
https://git.ruby-lang.org/ruby.git/commit/?id=92d2476208 From 92d2476208299b7ca780ecb15010741eebd43349 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Fri, 2 Sep 2022 14:49:42 +0900 Subject: Adjust styles [ci skip] --- compile.c | 9 +++++---- marshal.c | 3 ++- proc.c | 3 ++- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/compile.c b/compile.c index 4db1440bfa..b495d8ced8 100644 --- a/compile.c +++ b/compile.c @@ -5277,8 +5277,7 @@ static VALUE https://github.com/ruby/ruby/blob/trunk/compile.c#L5277 collect_const_segments(rb_iseq_t *iseq, const NODE *node) { VALUE arr = rb_ary_new(); - for (;;) - { + for (;;) { switch (nd_type(node)) { case NODE_CONST: rb_ary_unshift(arr, ID2SYM(node->nd_vid)); @@ -9042,7 +9041,8 @@ compile_colon2(rb_iseq_t *iseq, LINK_ANCHOR *const ret, const NODE *const node, https://github.com/ruby/ruby/blob/trunk/compile.c#L9041 ISEQ_BODY(iseq)->ic_size++; ADD_INSN1(ret, node, opt_getconstant_path, segments); RB_OBJ_WRITTEN(iseq, Qundef, segments); - } else { + } + else { /* constant */ DECL_ANCHOR(pref); DECL_ANCHOR(body); @@ -9083,7 +9083,8 @@ compile_colon3(rb_iseq_t *iseq, LINK_ANCHOR *const ret, const NODE *const node, https://github.com/ruby/ruby/blob/trunk/compile.c#L9083 VALUE segments = rb_ary_new_from_args(2, ID2SYM(idNULL), ID2SYM(node->nd_mid)); ADD_INSN1(ret, node, opt_getconstant_path, segments); RB_OBJ_WRITTEN(iseq, Qundef, segments); - } else { + } + else { ADD_INSN1(ret, node, putobject, rb_cObject); ADD_INSN1(ret, node, putobject, Qtrue); ADD_INSN1(ret, node, getconstant, ID2SYM(node->nd_mid)); diff --git a/marshal.c b/marshal.c index 1eeebf7729..30d1927cce 100644 --- a/marshal.c +++ b/marshal.c @@ -1957,7 +1957,8 @@ r_object_for(struct load_arg *arg, bool partial, int *ivp, VALUE extmod, int typ https://github.com/ruby/ruby/blob/trunk/marshal.c#L1957 if (sign == '-') { v = rb_int_uminus(v); } - } else { + } + else { data = r_bytes0(len * 2, arg); v = rb_integer_unpack(RSTRING_PTR(data), len, 2, 0, INTEGER_PACK_LITTLE_ENDIAN | (sign == '-' ? INTEGER_PACK_NEGATIVE : 0)); diff --git a/proc.c b/proc.c index f9bd469618..200a592701 100644 --- a/proc.c +++ b/proc.c @@ -2586,7 +2586,8 @@ convert_umethod_to_method_components(const struct METHOD *data, VALUE recv, VALU https://github.com/ruby/ruby/blob/trunk/proc.c#L2586 const rb_method_entry_t *me; if (clone) { me = rb_method_entry_clone(data->me); - } else { + } + else { me = data->me; } -- cgit v1.2.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/