From 54307ea7c3ced760ee375483a786ec7180798aed Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Fri, 8 Jul 2016 10:09:28 -0700 Subject: commit.c: remove print_commit_list() The helper function tries to offer a way to conveniently show the last one differently from others, presumably to allow you to say something like A, B, and C. while iterating over a list that has these three elements. However, there is only one caller, and it passes the same format string "%s\n" for both the last one and the other ones. Retire the helper function and update the caller with a simplified version. Signed-off-by: Junio C Hamano --- commit.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'commit.h') diff --git a/commit.h b/commit.h index 78ed513c75..71693ce0fd 100644 --- a/commit.h +++ b/commit.h @@ -376,10 +376,6 @@ extern int parse_signed_commit(const struct commit *commit, struct strbuf *message, struct strbuf *signature); extern int remove_signature(struct strbuf *buf); -extern void print_commit_list(struct commit_list *list, - const char *format_cur, - const char *format_last); - /* * Check the signature of the given commit. The result of the check is stored * in sig->check_result, 'G' for a good signature, 'U' for a good signature -- cgit v1.2.1