ruby-changes:59330
From: Nobuyoshi <ko1@a...>
Date: Thu, 19 Dec 2019 09:55:45 +0900 (JST)
Subject: [ruby-changes:59330] 76035e5bb6 (master): Adjusted the format
https://git.ruby-lang.org/ruby.git/commit/?id=76035e5bb6 From 76035e5bb6a5b44621fd1c11a0553780474d1c01 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Mon, 16 Dec 2019 18:19:01 +0900 Subject: Adjusted the format diff --git a/vm_args.c b/vm_args.c index 6c105f0..a9027e3 100644 --- a/vm_args.c +++ b/vm_args.c @@ -570,7 +570,8 @@ fill_keys_values(st_data_t key, st_data_t val, st_data_t ptr) https://github.com/ruby/ruby/blob/trunk/vm_args.c#L570 } static inline int -ignore_keyword_hash_p(VALUE keyword_hash, const rb_iseq_t * const iseq) { +ignore_keyword_hash_p(VALUE keyword_hash, const rb_iseq_t * const iseq) +{ if (!(iseq->body->param.flags.has_kw) && !(iseq->body->param.flags.has_kwrest)) { keyword_hash = rb_check_hash_type(keyword_hash); @@ -593,7 +594,8 @@ VALUE rb_iseq_location(const rb_iseq_t *iseq); https://github.com/ruby/ruby/blob/trunk/vm_args.c#L594 */ static st_table *caller_to_callees = 0; -static VALUE rb_warn_check(const rb_execution_context_t * const ec, const rb_iseq_t *const iseq) +static VALUE +rb_warn_check(const rb_execution_context_t * const ec, const rb_iseq_t *const iseq) { if (!iseq) return 0; -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/