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

ruby-changes:19962

From: tadf <ko1@a...>
Date: Sat, 11 Jun 2011 22:15:47 +0900 (JST)
Subject: [ruby-changes:19962] tadf:r32009 (trunk): * ext/date/date_core.c (datetime_s_{iso8601,rfc3339,xmlschema,rfc2822,httpdate}):

tadf	2011-06-11 22:10:04 +0900 (Sat, 11 Jun 2011)

  New Revision: 32009

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

  Log:
    * ext/date/date_core.c (datetime_s_{iso8601,rfc3339,xmlschema,rfc2822,httpdate}):
      do not take argument comp.

  Modified files:
    trunk/ChangeLog
    trunk/ext/date/date_core.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 32008)
+++ ChangeLog	(revision 32009)
@@ -1,3 +1,8 @@
+Sat Jun 11 22:07:56 2011  Tadayoshi Funaba  <tadf@d...>
+
+	* ext/date/date_core.c (datetime_s_{iso8601,rfc3339,xmlschema,rfc2822,httpdate}):
+	  do not take argument comp.
+
 Sat Jun 11 21:58:31 2011  Tadayoshi Funaba  <tadf@d...>
 
 	* ext/date/date_core.c: added examples.
Index: ext/date/date_core.c
===================================================================
--- ext/date/date_core.c	(revision 32008)
+++ ext/date/date_core.c	(revision 32009)
@@ -7545,16 +7545,14 @@
 static VALUE
 datetime_s_iso8601(int argc, VALUE *argv, VALUE klass)
 {
-    VALUE str, comp, sg;
+    VALUE str, sg;
 
-    rb_scan_args(argc, argv, "03", &str, &comp, &sg);
+    rb_scan_args(argc, argv, "02", &str, &sg);
 
     switch (argc) {
       case 0:
 	str = rb_str_new2("-4712-01-01T00:00:00+00:00");
       case 1:
-	comp = Qtrue;
-      case 2:
 	sg = INT2FIX(DEFAULT_SG);
     }
 
@@ -7579,16 +7577,14 @@
 static VALUE
 datetime_s_rfc3339(int argc, VALUE *argv, VALUE klass)
 {
-    VALUE str, comp, sg;
+    VALUE str, sg;
 
-    rb_scan_args(argc, argv, "03", &str, &comp, &sg);
+    rb_scan_args(argc, argv, "02", &str, &sg);
 
     switch (argc) {
       case 0:
 	str = rb_str_new2("-4712-01-01T00:00:00+00:00");
       case 1:
-	comp = Qtrue;
-      case 2:
 	sg = INT2FIX(DEFAULT_SG);
     }
 
@@ -7613,16 +7609,14 @@
 static VALUE
 datetime_s_xmlschema(int argc, VALUE *argv, VALUE klass)
 {
-    VALUE str, comp, sg;
+    VALUE str, sg;
 
-    rb_scan_args(argc, argv, "03", &str, &comp, &sg);
+    rb_scan_args(argc, argv, "02", &str, &sg);
 
     switch (argc) {
       case 0:
 	str = rb_str_new2("-4712-01-01T00:00:00+00:00");
       case 1:
-	comp = Qtrue;
-      case 2:
 	sg = INT2FIX(DEFAULT_SG);
     }
 
@@ -7648,16 +7642,14 @@
 static VALUE
 datetime_s_rfc2822(int argc, VALUE *argv, VALUE klass)
 {
-    VALUE str, comp, sg;
+    VALUE str, sg;
 
-    rb_scan_args(argc, argv, "03", &str, &comp, &sg);
+    rb_scan_args(argc, argv, "02", &str, &sg);
 
     switch (argc) {
       case 0:
 	str = rb_str_new2("Mon, 1 Jan -4712 00:00:00 +0000");
       case 1:
-	comp = Qtrue;
-      case 2:
 	sg = INT2FIX(DEFAULT_SG);
     }
 
@@ -7682,16 +7674,14 @@
 static VALUE
 datetime_s_httpdate(int argc, VALUE *argv, VALUE klass)
 {
-    VALUE str, comp, sg;
+    VALUE str, sg;
 
-    rb_scan_args(argc, argv, "03", &str, &comp, &sg);
+    rb_scan_args(argc, argv, "02", &str, &sg);
 
     switch (argc) {
       case 0:
 	str = rb_str_new2("Mon, 01 Jan -4712 00:00:00 GMT");
       case 1:
-	comp = Qtrue;
-      case 2:
 	sg = INT2FIX(DEFAULT_SG);
     }
 
@@ -7716,16 +7706,14 @@
 static VALUE
 datetime_s_jisx0301(int argc, VALUE *argv, VALUE klass)
 {
-    VALUE str, comp, sg;
+    VALUE str, sg;
 
-    rb_scan_args(argc, argv, "03", &str, &comp, &sg);
+    rb_scan_args(argc, argv, "02", &str, &sg);
 
     switch (argc) {
       case 0:
 	str = rb_str_new2("-4712-01-01T00:00:00+00:00");
       case 1:
-	comp = Qtrue;
-      case 2:
 	sg = INT2FIX(DEFAULT_SG);
     }
 

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

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