diff options
author | Harry Jeffery <harry@exec64.co.uk> | 2014-09-18 21:53:53 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-09-18 15:15:21 -0700 |
commit | 9271095cc5571e306d709ebf8eb7f0a388254d9d (patch) | |
tree | 82f6c8af5766632711b0daa9012f4af903c1b3bb /log-tree.h | |
parent | 96db324a73fdada6fbe7b63221986f8f18cc63b0 (diff) | |
download | git-9271095cc5571e306d709ebf8eb7f0a388254d9d.tar.gz git-9271095cc5571e306d709ebf8eb7f0a388254d9d.tar.xz |
pretty: add %D format specifier
Add a new format specifier, '%D' that is identical in behaviour to '%d',
except that it does not include the ' (' prefix or ')' suffix provided
by '%d'.
Signed-off-by: Harry Jeffery <harry@exec64.co.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'log-tree.h')
-rw-r--r-- | log-tree.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/log-tree.h b/log-tree.h index d6ecd4dc4..b26160c4d 100644 --- a/log-tree.h +++ b/log-tree.h @@ -13,7 +13,13 @@ int log_tree_diff_flush(struct rev_info *); int log_tree_commit(struct rev_info *, struct commit *); int log_tree_opt_parse(struct rev_info *, const char **, int); void show_log(struct rev_info *opt); -void format_decorations(struct strbuf *sb, const struct commit *commit, int use_color); +void format_decorations_extended(struct strbuf *sb, const struct commit *commit, + int use_color, + const char *prefix, + const char *separator, + const char *suffix); +#define format_decorations(strbuf, commit, color) \ + format_decorations_extended((strbuf), (commit), (color), " (", ", ", ")") void show_decorations(struct rev_info *opt, struct commit *commit); void log_write_email_headers(struct rev_info *opt, struct commit *commit, const char **subject_p, |