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

* ChangeLog: format-time-string under C locale. [ruby-dev:33261]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15162 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2008-01-21 16:18:27 +00:00
parent b3ee6f9718
commit 7760f3c462

View file

@ -1,3 +1,7 @@
Tue Jan 22 01:15:51 2008 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
* ChangeLog: format-time-string under C locale. [ruby-dev:33261]
Tue Jan 22 00:45:12 2008 Yusuke Endoh <mame@tsg.ne.jp>
* test/ruby/test_bignum.rb: add tests for bignum.c.
@ -39479,9 +39483,10 @@ For the changes before 1.8.0, see doc/ChangeLog-1.8.0
Local variables:
add-log-time-format: (lambda ()
(let* ((time (current-time))
(system-time-locale "C")
(diff (+ (cadr time) 32400))
(lo (% diff 65536))
(hi (+ (car time) (/ diff 65536))))
(hi (+ (car time) (/ diff 65536))))
(format-time-string "%a %b %e %H:%M:%S %Y" (list hi lo) t)))
indent-tabs-mode: t
tab-width: 8