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

* ChangeLog (add-log-time-format): "%c" contains timezone on XEmacs.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4145 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2003-07-24 07:21:44 +00:00
parent 7896128822
commit 71c9abdd06

View file

@ -1,3 +1,8 @@
Thu Jul 24 16:18:40 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* ChangeLog (add-log-time-format): "%c" contains timezone on
XEmacs.
Thu Jul 24 16:05:22 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net> Thu Jul 24 16:05:22 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* configure.in (AC_C_VOLATILE): check if volatile works. * configure.in (AC_C_VOLATILE): check if volatile works.
@ -6,7 +11,7 @@ Thu Jul 24 16:05:22 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* eval.c (rb_thread_group): Thread#group. [new] * eval.c (rb_thread_group): Thread#group. [new]
Thu Jul 24 15:50:42 JST 2003 GOTOU Yuuzou <gotoyuzo@notwork.org> Thu Jul 24 15:50:42 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
* ext/openssl/extconf.rb: add check for win32 OpenSSL libraries. * ext/openssl/extconf.rb: add check for win32 OpenSSL libraries.
@ -23240,5 +23245,5 @@ add-log-time-format: (lambda ()
(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 "%c" (list hi lo) t))) (format-time-string "%a %b %e %H:%M:%S %Y" (list hi lo) t)))
end: end: