diff options
author | Jeff King <peff@peff.net> | 2011-05-26 18:27:24 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-05-26 15:47:20 -0700 |
commit | 8b8a53744f60274ef07e3a2a51995129c8d42f38 (patch) | |
tree | 003d6020e014d51269a9b299f5a829b70194227e /commit.h | |
parent | 5b38456ec7bd0229bb35146ab8a905c4b63daeec (diff) | |
download | git-8b8a53744f60274ef07e3a2a51995129c8d42f38.tar.gz git-8b8a53744f60274ef07e3a2a51995129c8d42f38.tar.xz |
pretty: add pp_commit_easy function for simple callers
Many callers don't actually care about the pretty print
context at all; let's just give them a simple way of
pretty-printing a commit without having to create a context
struct.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'commit.h')
-rw-r--r-- | commit.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -98,6 +98,8 @@ extern void format_commit_message(const struct commit *commit, extern void pretty_print_commit(enum cmit_fmt fmt, const struct commit *commit, struct strbuf *sb, const struct pretty_print_context *context); +extern void pp_commit_easy(enum cmit_fmt fmt, const struct commit *commit, + struct strbuf *sb); void pp_user_info(const char *what, enum cmit_fmt fmt, struct strbuf *sb, const char *line, enum date_mode dmode, const char *encoding); |