From 96684de3c03828c8ad5c49b5c73d129a5313ec93 Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Wed, 30 Jun 2021 09:46:03 -0400 Subject: Seperate each PR comment by one blank line in `add_comment()`. --- git.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git.c b/git.c index e640f83..d5b1661 100644 --- a/git.c +++ b/git.c @@ -220,7 +220,7 @@ int add_comment(comment *comment, const char *pr_root) { j += sprintf(file_buf+j, "reply-date: "); j += strftime(file_buf+j, -1, "%c %z\n", &tm); } - j += sprintf(file_buf+j, "description: %s", comment->desc); + j += sprintf(file_buf+j, "description: %s\n\n", comment->desc); /* Append /comments to the PR root. */ sprintf(filename, "%s/comments", pr_root); -- cgit v1.2.3-13-gbd6f