branch: externals/vc-backup
commit e867cdf717dd8e73fa560a51e3e899c4f8a99e9c
Author: Alfred M. Szmidt <[email protected]>
Commit: Philip Kaludercic <[email protected]>
Format vc-backup--list-backup-versions docstring slightly
---
vc-backup.el | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/vc-backup.el b/vc-backup.el
index a159606..ee0665a 100644
--- a/vc-backup.el
+++ b/vc-backup.el
@@ -166,8 +166,9 @@ version number as a string or the value of
(defun vc-backup--list-backup-versions (file)
"Return an association list of backup files and versions for FILE.
Each element of the list has the form (VERS . BACKUP), where VERS
-is the version string as generated by `vc-backup--extract-version'
-and BACKUP is the actual backup file."
+is the version string as generated by
+`vc-backup--extract-version' and BACKUP is the actual backup
+file."
(let (files)
(dolist (backup (vc-backup--list-backups file))
(push (cons (vc-backup--extract-version backup) backup)