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

* time.c (time_get_tm): take time_object instead of gmt.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23273 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2009-04-25 06:48:39 +00:00
parent 4c2e943091
commit c8f938d0b5
2 changed files with 8 additions and 4 deletions

View file

@ -1,3 +1,7 @@
Sat Apr 25 15:47:54 2009 Tanaka Akira <akr@fsij.org>
* time.c (time_get_tm): take time_object instead of gmt.
Sat Apr 25 15:39:44 2009 Tanaka Akira <akr@fsij.org>
* time.c (time_succ): refactored to avoid gmt variable.

8
time.c
View file

@ -48,7 +48,6 @@ typedef unsigned LONG_LONG unsigned_time_t;
VALUE rb_cTime;
static VALUE time_utc_offset _((VALUE));
static VALUE time_get_tm(VALUE, int);
static VALUE time_gmtime(VALUE);
static VALUE time_localtime(VALUE);
@ -1003,10 +1002,11 @@ struct time_object {
#define TIME_LOCALTIME_P(tobj) ((tobj)->gmt == 0)
#define TIME_SET_LOCALTIME(tobj) ((tobj)->gmt = 0)
static VALUE time_get_tm(VALUE, struct time_object *);
#define MAKE_TM(time, tobj) \
do { \
if ((tobj)->tm_got == 0) { \
time_get_tm((time), (tobj)->gmt); \
time_get_tm((time), (tobj)); \
} \
} while (0)
@ -2307,9 +2307,9 @@ time_getgmtime(VALUE time)
}
static VALUE
time_get_tm(VALUE time, int gmt)
time_get_tm(VALUE time, struct time_object *tobj)
{
if (gmt) return time_gmtime(time);
if (TIME_UTC_P(tobj)) return time_gmtime(time);
return time_localtime(time);
}