Commit 512d0df15e6099dbbeecef9984cd74b897aec219

Stefan Sperling 2019-02-22T01:23:10

append dots to tog blame's "annotating" progress message

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/tog/tog.c b/tog/tog.c
index d645055..4660e67 100644
--- a/tog/tog.c
+++ b/tog/tog.c
@@ -2463,7 +2463,7 @@ draw_blame(struct tog_view *view, struct got_object_id *id, FILE *f,
 
 	if (asprintf(&line, "[%d/%d] %s%s",
 	    *first_displayed_line - 1 + selected_line, nlines,
-	    blame_complete ? "" : "annotating ", path) == -1) {
+	    blame_complete ? "" : "annotating... ", path) == -1) {
 		free(id_str);
 		return got_error_from_errno();
 	}