diff options
| author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-04-25 06:40:59 +0000 |
|---|---|---|
| committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-04-25 06:40:59 +0000 |
| commit | 2ab4ac90d7d71325660c7df8d1ef1b180535d8fa (patch) | |
| tree | e283f329cea7f7dddac616cd7288ad358cd77b2a /time.c | |
| parent | d0d80594d94ee602ad7afba4d30e3ae62455767a (diff) | |
| download | ruby-2ab4ac90d7d71325660c7df8d1ef1b180535d8fa.tar.gz ruby-2ab4ac90d7d71325660c7df8d1ef1b180535d8fa.tar.xz ruby-2ab4ac90d7d71325660c7df8d1ef1b180535d8fa.zip | |
* time.c (time_succ): refactored to avoid gmt variable.
(strftimev): use TIME_UTC_P.
(time_strftime): ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23272 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'time.c')
| -rw-r--r-- | time.c | 13 |
1 files changed, 6 insertions, 7 deletions
@@ -2445,13 +2445,12 @@ static VALUE time_succ(VALUE time) { struct time_object *tobj; - int gmt; + struct time_object *tobj2; GetTimeval(time, tobj); - gmt = tobj->gmt; time = time_new_timev(rb_cTime, add(tobj->timev, INT2FIX(1))); - GetTimeval(time, tobj); - tobj->gmt = gmt; + GetTimeval(time, tobj2); + tobj2->gmt = tobj->gmt; return time; } @@ -2930,7 +2929,7 @@ strftimev(const char *fmt, VALUE time) GetTimeval(time, tobj); MAKE_TM(time, tobj); - len = rb_strftime_alloc(&buf, fmt, &tobj->vtm, tobj->timev, tobj->gmt); + len = rb_strftime_alloc(&buf, fmt, &tobj->vtm, tobj->timev, TIME_UTC_P(tobj)); str = rb_str_new(buf, len); if (buf != buffer) xfree(buf); return str; @@ -3013,7 +3012,7 @@ time_strftime(VALUE time, VALUE format) str = rb_str_new(0, 0); while (p < pe) { - len = rb_strftime_alloc(&buf, p, &tobj->vtm, tobj->timev, tobj->gmt); + len = rb_strftime_alloc(&buf, p, &tobj->vtm, tobj->timev, TIME_UTC_P(tobj)); rb_str_cat(str, buf, len); p += strlen(p); if (buf != buffer) { @@ -3027,7 +3026,7 @@ time_strftime(VALUE time, VALUE format) } else { len = rb_strftime_alloc(&buf, RSTRING_PTR(format), - &tobj->vtm, tobj->timev, tobj->gmt); + &tobj->vtm, tobj->timev, TIME_UTC_P(tobj)); } str = rb_str_new(buf, len); if (buf != buffer) xfree(buf); |
