From 87eeed5103da8cfa3f0d225fe2a5d82001cadbe8 Mon Sep 17 00:00:00 2001 From: tadf Date: Sat, 11 Jun 2011 13:10:04 +0000 Subject: * 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 --- ext/date/date_core.c | 36 ++++++++++++------------------------ 1 file changed, 12 insertions(+), 24 deletions(-) (limited to 'ext') 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); } -- cgit v1.2.3