mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
23 lines
696 B
Text
23 lines
696 B
Text
![]() |
|
||
|
For the changes before 2.3.0, see doc/ChangeLog-2.3.0
|
||
|
For the changes before 2.2.0, see doc/ChangeLog-2.2.0
|
||
|
For the changes before 2.1.0, see doc/ChangeLog-2.1.0
|
||
|
For the changes before 2.0.0, see doc/ChangeLog-2.0.0
|
||
|
For the changes before 1.9.3, see doc/ChangeLog-1.9.3
|
||
|
For the changes before 1.8.0, see doc/ChangeLog-1.8.0
|
||
|
|
||
|
Local variables:
|
||
|
coding: us-ascii
|
||
|
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))))
|
||
|
(format-time-string "%a %b %e %H:%M:%S %Y" (list hi lo) t)))
|
||
|
indent-tabs-mode: t
|
||
|
tab-width: 8
|
||
|
change-log-indent-text: 2
|
||
|
end:
|
||
|
vim: tabstop=8 shiftwidth=2
|