cgit

commit 840858594e8b48560541792b717a71dd802d5d80

Author: Lukas Fleischer <cgit@cryptocrack.de>

ui-patch.c: Add additional newline after each patch

For consistency with git-format-patch(1).

Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>

 tests/t0108-patch.sh | 4 ++--
 ui-patch.c | 2 +-


diff --git a/tests/t0108-patch.sh b/tests/t0108-patch.sh
index 867d7393d6f0d388055d01d607cae0fd41635b31..33675af58abcf3cc4908cf3de7bd9c58e8ccaad1 100755
--- a/tests/t0108-patch.sh
+++ b/tests/t0108-patch.sh
@@ -20,7 +20,7 @@ 	grep "^Subject: commit 5" tmp
 '
 
 test_expect_success 'find `cgit` signature' '
-	tail -1 tmp | grep "^cgit"
+	tail -2 tmp | head -1 | grep "^cgit"
 '
 
 test_expect_success 'find initial commit' '
@@ -32,7 +32,7 @@ 	cgit_query "url=foo/patch&id=$root" >tmp
 '
 
 test_expect_success 'find `cgit` signature' '
-	tail -1 tmp | grep "^cgit"
+	tail -2 tmp | head -1 | grep "^cgit"
 '
 
 test_done




diff --git a/ui-patch.c b/ui-patch.c
index 6df105e397a5e8589eecbef7db2489ca8345ed5c..333bb99a3864dda876185080aa88704ea866be30 100644
--- a/ui-patch.c
+++ b/ui-patch.c
@@ -80,6 +80,6 @@ 	prepare_revision_walk(&rev);
 
 	while ((commit = get_revision(&rev)) != NULL) {
 		log_tree_commit(&rev, commit);
-		printf("-- \ncgit %s\n", cgit_version);
+		printf("-- \ncgit %s\n\n", cgit_version);
 	}
 }