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

ruby-changes:17935

From: nobu <ko1@a...>
Date: Sat, 27 Nov 2010 18:10:20 +0900 (JST)
Subject: [ruby-changes:17935] Ruby:r29951 (trunk): * time.c (leap_year_v_p): fixed typo.

nobu	2010-11-27 18:08:29 +0900 (Sat, 27 Nov 2010)

  New Revision: 29951

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=29951

  Log:
    * time.c (leap_year_v_p): fixed typo.  [ruby-dev:42631]

  Modified files:
    trunk/ChangeLog
    trunk/test/ruby/test_time.rb
    trunk/time.c

Index: time.c
===================================================================
--- time.c	(revision 29950)
+++ time.c	(revision 29951)
@@ -853,7 +853,7 @@
 static struct vtm *localtimew(wideval_t timew, struct vtm *result);
 
 static int leap_year_p(long y);
-#define leap_year_v_p(y) leap_year_p(NUM2LONG(mod(v, INT2FIX(400))))
+#define leap_year_v_p(y) leap_year_p(NUM2LONG(mod((y), INT2FIX(400))))
 
 #ifdef HAVE_GMTIME_R
 #define rb_gmtime_r(t, tm) gmtime_r(t, tm)
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 29950)
+++ ChangeLog	(revision 29951)
@@ -1,3 +1,7 @@
+Sat Nov 27 18:08:18 2010  Nobuyoshi Nakada  <nobu@r...>
+
+	* time.c (leap_year_v_p): fixed typo.  [ruby-dev:42631]
+
 Sat Nov 27 17:57:08 2010  Tanaka Akira  <akr@f...>
 
 	* resolv.rb (Resolv::DNS): use the same DNS server when retry using
Index: test/ruby/test_time.rb
===================================================================
--- test/ruby/test_time.rb	(revision 29950)
+++ test/ruby/test_time.rb	(revision 29951)
@@ -19,6 +19,10 @@
     assert_equal(Time.utc(2000,2,10), Time.new(2000,2,9, 13,0,0, -3600*11))
     assert_equal(Time.utc(2000,2,10), Time.new(2000,2,10, 11,0,0, "+11:00"))
     assert_equal(Rational(1,2), Time.new(2000,2,10, 11,0,5.5, "+11:00").subsec)
+    bug4090 = '[ruby-dev:42631]'
+    tm = [2001,2,28,23,59,30]
+    t = Time.new(*tm, "-12:00")
+    assert_equal([2001,2,28,23,59,30,-43200], [t.year, t.month, t.mday, t.hour, t.min, t.sec, t.gmt_offset], bug4090)
   end
 
   def test_time_add()

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

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