~pkal/vc-backup

4150abddaaa3456c7e09182c48cf28a091083bad — Alfred M. Szmidt 1 year, 9 months ago 8cb2da3
Use file modification time in version log
1 files changed, 1 insertions(+), 1 deletions(-)

M vc-backup.el
M vc-backup.el => vc-backup.el +1 -1
@@ 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))