From 306fbb6a0c2af726f7a30585c59f8b4c14878437 Mon Sep 17 00:00:00 2001 From: kazu Date: Mon, 21 Jan 2008 16:18:27 +0000 Subject: * ChangeLog: format-time-string under C locale. [ruby-dev:33261] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15162 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 7f4901e43..1a433fc76 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Jan 22 01:15:51 2008 Kazuhiro NISHIYAMA + + * ChangeLog: format-time-string under C locale. [ruby-dev:33261] + Tue Jan 22 00:45:12 2008 Yusuke Endoh * 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 -- cgit