ruby-changes:56777
From: git <ko1@a...>
Date: Sat, 3 Aug 2019 10:35:28 +0900 (JST)
Subject: [ruby-changes:56777] git: fb96bea7ed (master): * expand tabs.
https://git.ruby-lang.org/ruby.git/commit/?id=fb96bea7ed From fb96bea7ed8ed6765fda2a1db90a2cfce14e59b7 Mon Sep 17 00:00:00 2001 From: git <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> Date: Sat, 3 Aug 2019 10:25:20 +0900 Subject: * expand tabs. diff --git a/bignum.c b/bignum.c index 2818b05..6edb7f0 100644 --- a/bignum.c +++ b/bignum.c @@ -6126,7 +6126,7 @@ rb_big_divmod(VALUE x, VALUE y) https://github.com/ruby/ruby/blob/trunk/bignum.c#L6126 y = rb_int2big(FIX2LONG(y)); } else if (!RB_BIGNUM_TYPE_P(y)) { - return rb_num_coerce_bin(x, y, idDivmod); + return rb_num_coerce_bin(x, y, idDivmod); } bigdivmod(x, y, &div, &mod); @@ -6214,7 +6214,7 @@ rb_big_fdiv_double(VALUE x, VALUE y) https://github.com/ruby/ruby/blob/trunk/bignum.c#L6214 return big_fdiv_float(x, y); } else { - return NUM2DBL(rb_num_coerce_bin(x, y, idFdiv)); + return NUM2DBL(rb_num_coerce_bin(x, y, idFdiv)); } v = rb_flo_div_flo(DBL2NUM(dx), DBL2NUM(dy)); return NUM2DBL(v); -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/