summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-11 13:10:04 +0000
committertadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-11 13:10:04 +0000
commit87eeed5103da8cfa3f0d225fe2a5d82001cadbe8 (patch)
treebbbea6fe631d64cd4fa95487c58475c1ba317471
parent4a400e5372579d9d41d5e39fc27e44c069c1480b (diff)
* ext/date/date_core.c (datetime_s_{iso8601,rfc3339,xmlschema,rfc2822,httpdate}):
do not take argument comp. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32009 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--ext/date/date_core.c36
2 files changed, 17 insertions, 24 deletions
diff --git a/ChangeLog b/ChangeLog
index de7b86bbed..9db7940e41 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Jun 11 22:07:56 2011 Tadayoshi Funaba <tadf@dotrb.org>
+
+ * 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@dotrb.org>
* ext/date/date_core.c: added examples.
diff --git a/ext/date/date_core.c b/ext/date/date_core.c
index 1a514e4019..ee4dd8bc21 100644
--- a/ext/date/date_core.c
+++ b/ext/date/date_core.c
@@ -7545,16 +7545,14 @@ datetime_s_parse(int argc, VALUE *argv, VALUE klass)
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 @@ datetime_s_iso8601(int argc, VALUE *argv, VALUE klass)
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 @@ datetime_s_rfc3339(int argc, VALUE *argv, VALUE klass)
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 @@ datetime_s_xmlschema(int argc, VALUE *argv, VALUE klass)
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 @@ datetime_s_rfc2822(int argc, VALUE *argv, VALUE klass)
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 @@ datetime_s_httpdate(int argc, VALUE *argv, VALUE klass)
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);
}