branch: externals/vc-backup
commit 37932205b9f170db65d6687bd3d8c07a259f825b
Author: Philip Kaludercic <[email protected]>
Commit: Philip Kaludercic <[email protected]>
Mention file size in vc-log
---
vc-backup.el | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/vc-backup.el b/vc-backup.el
index f5368b4..0d1f3d4 100644
--- a/vc-backup.el
+++ b/vc-backup.el
@@ -306,8 +306,10 @@ The results are written into BUFFER."
(uid (file-attribute-user-id attr))
(user (or (user-login-name uid) uid))
(time (file-attribute-modification-time attr))
+ (size (file-attribute-size attr))
(date (format-time-string "%c" time)))
- (insert (format "%s%s\t%s (%s)\n" base (car rev) date user)))))
+ (insert (format "%s%s\t%s (%s)\t%s\n" base (car rev) date user
+ (file-size-human-readable size nil " " "B"))))))
(goto-char (point-min))
(forward-line 2))
'limit-unsupported)