summaryrefslogtreecommitdiff
path: root/lisp/vc
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2016-04-02 14:25:47 +0300
committerEli Zaretskii <eliz@gnu.org>2016-04-02 14:25:47 +0300
commit0020047fdaf6b180009e2f5bb24975fc8ed75136 (patch)
tree5cb9207a34d44c8880f414ebfb2e4ab8793c1a33 /lisp/vc
parent17b5152d737e74a3b99a98f3be9866facee8865f (diff)
downloademacs-0020047fdaf6b180009e2f5bb24975fc8ed75136.tar.gz
Adapt calls to 'format-time-string' to changes in Emacs 25
* lisp/vc/pcvs-info.el (cvs-fileinfo-from-entries): Use t as the last argument to format-time-string. (Bug#23128) * lisp/gnus/gmm-utils.el (gmm-format-time-string): Use t as the last argument to format-time-string, when the TZ argument is not a number, per the doc string.
Diffstat (limited to 'lisp/vc')
-rw-r--r--lisp/vc/pcvs-info.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/pcvs-info.el b/lisp/vc/pcvs-info.el
index 1abc7729045..b9ecc892540 100644
--- a/lisp/vc/pcvs-info.el
+++ b/lisp/vc/pcvs-info.el
@@ -465,7 +465,7 @@ DIR can also be a file."
((equal date "Result of merge") (setq subtype 'MERGED))
((let ((mtime (nth 5 (file-attributes (concat dir f))))
(system-time-locale "C"))
- (setq timestamp (format-time-string "%c" mtime 'utc))
+ (setq timestamp (format-time-string "%c" mtime t))
;; Solaris sometimes uses "Wed Sep 05", not "Wed Sep 5".
;; See "grep '[^a-z_]ctime' cvs/src/*.c" for reference.
(if (= (aref timestamp 8) ?0)