diff options
author | Christian Couder <chriscool@tuxfamily.org> | 2014-11-09 10:23:41 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-11-10 09:59:19 -0800 |
commit | 8c3845892363abf3fb5cf2fe61bc455554f50c68 (patch) | |
tree | 332ca210e57e116d5fb86daab3ca824de3968fc7 /commit.h | |
parent | 216d29ef257e48f95bc14765d5da17e7854a3109 (diff) | |
download | git-8c3845892363abf3fb5cf2fe61bc455554f50c68.tar.gz |
commit: make ignore_non_trailer() non static
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'commit.h')
-rw-r--r-- | commit.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -326,6 +326,9 @@ extern struct commit_extra_header *read_commit_extra_headers(struct commit *, co extern void free_commit_extra_headers(struct commit_extra_header *extra); +/* Find the end of the log message, the right place for a new trailer. */ +extern int ignore_non_trailer(struct strbuf *sb); + typedef void (*each_mergetag_fn)(struct commit *commit, struct commit_extra_header *extra, void *cb_data); |