[前][次][番号順一覧][スレッド一覧]

ruby-changes:54700

From: svn <ko1@a...>
Date: Thu, 24 Jan 2019 14:30:57 +0900 (JST)
Subject: [ruby-changes:54700] svn:r66915 (trunk): * expand tabs.

svn	2019-01-24 14:30:45 +0900 (Thu, 24 Jan 2019)

  New Revision: 66915

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=66915

  Log:
    * expand tabs.

  Modified files:
    trunk/numeric.c
Index: numeric.c
===================================================================
--- numeric.c	(revision 66914)
+++ numeric.c	(revision 66915)
@@ -2514,9 +2514,9 @@ int https://github.com/ruby/ruby/blob/trunk/numeric.c#L2514
 ruby_float_step(VALUE from, VALUE to, VALUE step, int excl, int allow_endless)
 {
     if (RB_TYPE_P(from, T_FLOAT) || RB_TYPE_P(to, T_FLOAT) || RB_TYPE_P(step, T_FLOAT)) {
-	double unit = NUM2DBL(step);
+        double unit = NUM2DBL(step);
 	double beg = NUM2DBL(from);
-	double end = (allow_endless && NIL_P(to)) ? (unit < 0 ? -1 : 1)*HUGE_VAL : NUM2DBL(to);
+        double end = (allow_endless && NIL_P(to)) ? (unit < 0 ? -1 : 1)*HUGE_VAL : NUM2DBL(to);
 	double n = ruby_float_step_size(beg, end, unit, excl);
 	long i;
 

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]