1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/date/date_core.c (date_zone_to_diff): renamed.

* ext/date/date_parse.c: ditto.
	* ext/date/date_strptime.c: ditto.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31363 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tadf 2011-04-26 16:23:05 +00:00
parent 21e6862cd5
commit 322bffd84b
4 changed files with 20 additions and 13 deletions

View file

@ -150,6 +150,8 @@ valid_range_p(VALUE v, int a, int b)
si += l; \
}
VALUE date_zone_to_diff(VALUE);
static size_t
date__strptime_internal(const char *str, size_t slen,
const char *fmt, size_t flen, VALUE hash)
@ -567,7 +569,6 @@ date__strptime_internal(const char *str, size_t slen,
")";
static VALUE pat = Qnil;
VALUE m, b;
VALUE zone_to_diff(VALUE s);
if (NIL_P(pat)) {
pat = rb_reg_new(pat_source, sizeof pat_source - 1,
@ -584,7 +585,7 @@ date__strptime_internal(const char *str, size_t slen,
s = f_aref(m, INT2FIX(1));
l = f_end(m, INT2FIX(0));
o = zone_to_diff(s);
o = date_zone_to_diff(s);
si += NUM2LONG(l);
set_hash("zone", s);
set_hash("offset", o);