Skip to content

Commit 921c477

Browse files
committed
* ChangeLog (add-log-time-format): Not exactly sure when but
recently (25.x maybe), emacs changed its API to take optional two arguments. We have to follow that. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56168 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent f98a2c8 commit 921c477

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

ChangeLog

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Fri Sep 16 14:35:55 2016 URABE Shyouhei <shyouhei@ruby-lang.org>
2+
3+
* ChangeLog (add-log-time-format): Not exactly sure when but
4+
recently (25.x maybe), emacs changed its API to take optional
5+
two arguments. We have to follow that.
6+
17
Fri Sep 16 06:43:25 2016 Aaron Patterson <tenderlove@ruby-lang.org>
28

39
* lib/uri/generic.rb (def check_password): don't include bad password
@@ -8166,8 +8172,8 @@ For the changes before 1.8.0, see doc/ChangeLog-1.8.0
81668172

81678173
Local variables:
81688174
coding: us-ascii
8169-
add-log-time-format: (lambda ()
8170-
(let* ((time (current-time))
8175+
add-log-time-format: (lambda (&optional x y)
8176+
(let* ((time (or x (current-time)))
81718177
(system-time-locale "C")
81728178
(diff (+ (cadr time) 32400))
81738179
(lo (% diff 65536))

0 commit comments

Comments
 (0)