aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-21 16:18:27 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-21 16:18:27 +0000
commit7760f3c462d6016cc220498c346db901e3ffcac1 (patch)
tree765ed3e7b1f3c00494c434e5c42a8904d0c82707
parentb3ee6f9718c8e0794e4bb83894ade34d66747b84 (diff)
downloadruby-7760f3c462d6016cc220498c346db901e3ffcac1.tar.gz
* 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
-rw-r--r--ChangeLog7
1 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7f4901e431..1a433fc763 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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