* ext/date/date_tmx.h: offset in struct tmx_funcs is now int.

* ext/date/date_strftime.c: ditto.
	* ext/date/date_core.c: ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36114 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tadf 2012-06-16 09:49:17 +00:00
Родитель 07784c78b9
Коммит f5b033cd4e
4 изменённых файлов: 12 добавлений и 7 удалений

Просмотреть файл

@ -1,3 +1,9 @@
Sat Jun 16 18:46:57 2012 Tadayoshi Funaba <tadf@dotrb.org>
* ext/date/date_tmx.h: offset in struct tmx_funcs is now int.
* ext/date/date_strftime.c: ditto.
* ext/date/date_core.c: ditto.
Sat Jun 16 18:31:46 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
* eval.c (ruby_setup): set running state in the normal case before

Просмотреть файл

@ -6813,10 +6813,10 @@ tmx_m_msecs(union DateData *x)
return s;
}
static VALUE
static int
tmx_m_of(union DateData *x)
{
return INT2FIX(m_of(x));
return m_of(x);
}
static char *
@ -6842,7 +6842,7 @@ static struct tmx_funcs tmx_funcs = {
(VALUE (*)(void *))m_sf_in_sec,
(VALUE (*)(void *))tmx_m_secs,
(VALUE (*)(void *))tmx_m_msecs,
(VALUE (*)(void *))tmx_m_of,
(int (*)(void *))tmx_m_of,
(char *(*)(void *))tmx_m_zone
};
@ -8650,7 +8650,7 @@ dt_lite_jisx0301(int argc, VALUE *argv, VALUE self)
static VALUE
time_to_time(VALUE self)
{
return rb_funcall(self, rb_intern("getlocal"), 0);
return f_getlocal(self);
}
/*

Просмотреть файл

@ -424,8 +424,7 @@ date_strftime_with_tmx(char *s, size_t maxsize, const char *format,
long off, aoff;
int hl, hw;
off = NUM2LONG(rb_funcall(tmx_offset, rb_intern("round"), 0));
off = tmx_offset;
aoff = off;
if (aoff < 0)
aoff = -off;

Просмотреть файл

@ -18,7 +18,7 @@ struct tmx_funcs {
VALUE (*sec_fraction)(void *dat);
VALUE (*secs)(void *dat);
VALUE (*msecs)(void *dat);
VALUE (*offset)(void *dat);
int (*offset)(void *dat);
char *(*zone)(void *dat);
};
struct tmx {