From 91376c98e25f24b1681bc728b1f4d9ce04244542 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Fri, 16 Dec 2022 18:37:10 +0100 Subject: ui-log: show ellipsis if detailed commit message is available The existence of a detailed commit message may be of interst even if only the subject is shown by default. Signed-off-by: Christian Hesse --- ui-log.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ui-log.c') diff --git a/ui-log.c b/ui-log.c index ee2a607..faec658 100644 --- a/ui-log.c +++ b/ui-log.c @@ -243,6 +243,8 @@ static void print_commit(struct commit *commit, struct rev_info *revs) } cgit_commit_link(info->subject, NULL, NULL, ctx.qry.head, oid_to_hex(&commit->object.oid), ctx.qry.vpath); + if (!ctx.qry.showmsg && info->msg && *(info->msg)) + html("..."); show_commit_decorations(commit); html(""); cgit_open_filter(ctx.repo->email_filter, info->author_email, "log"); -- cgit v1.2.3-freya