* 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:
parent
b3ee6f9718
commit
7760f3c462
@ -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>
|
Tue Jan 22 00:45:12 2008 Yusuke Endoh <mame@tsg.ne.jp>
|
||||||
|
|
||||||
* test/ruby/test_bignum.rb: add tests for bignum.c.
|
* 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:
|
Local variables:
|
||||||
add-log-time-format: (lambda ()
|
add-log-time-format: (lambda ()
|
||||||
(let* ((time (current-time))
|
(let* ((time (current-time))
|
||||||
|
(system-time-locale "C")
|
||||||
(diff (+ (cadr time) 32400))
|
(diff (+ (cadr time) 32400))
|
||||||
(lo (% diff 65536))
|
(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)))
|
(format-time-string "%a %b %e %H:%M:%S %Y" (list hi lo) t)))
|
||||||
indent-tabs-mode: t
|
indent-tabs-mode: t
|
||||||
tab-width: 8
|
tab-width: 8
|
||||||
|
Loading…
x
Reference in New Issue
Block a user