emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/vc-backup 4150abd 03/18: Use file modification time in


From: ELPA Syncer
Subject: [elpa] externals/vc-backup 4150abd 03/18: Use file modification time in version log
Date: Thu, 26 Aug 2021 13:57:23 -0400 (EDT)

branch: externals/vc-backup
commit 4150abddaaa3456c7e09182c48cf28a091083bad
Author: Alfred M. Szmidt <ams@gnu.org>
Commit: Philip Kaludercic <philipk@posteo.net>

    Use file modification time in version log
---
 vc-backup.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vc-backup.el b/vc-backup.el
index a25b17e..37d7cd4 100644
--- a/vc-backup.el
+++ b/vc-backup.el
@@ -177,7 +177,7 @@ The results are written into BUFFER."
       (insert "Backups for " file "\n\n")
       (dolist (rev (nreverse (vc-backup-list-backup-versions file)))
        (let* ((attr (file-attributes (cdr rev)))
-              (stime (file-attribute-status-change-time attr))
+              (stime (file-attribute-modification-time attr))
               (sdate (format-time-string "%c" stime)))
          (insert (format "v%s\tFrom %s\n" (car rev) sdate)))))
     (goto-char (point-min))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]