branch: externals/vc-backup commit 4150abddaaa3456c7e09182c48cf28a091083bad Author: Alfred M. Szmidt <a...@gnu.org> Commit: Philip Kaludercic <phil...@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))