summaryrefslogtreecommitdiff
path: root/commit.h
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2016-06-22 20:20:16 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-06-22 20:23:56 (GMT)
commit77356122443039b4b65a7795d66b3d1fdeedcce8 (patch)
tree103dea05a387fe15c1851aa2edebb2bc67087a33 /commit.h
parent765428699a5381f113d19974720bc91b5bfeaf1d (diff)
downloadgit-77356122443039b4b65a7795d66b3d1fdeedcce8.zip
git-77356122443039b4b65a7795d66b3d1fdeedcce8.tar.gz
git-77356122443039b4b65a7795d66b3d1fdeedcce8.tar.bz2
pretty: make the skip_blank_lines() function public
This function will be used also in the find_commit_subject() function. While at it, rename the function to reflect that it skips not only empty lines, but any lines consisting of only whitespace, too. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'commit.h')
-rw-r--r--commit.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/commit.h b/commit.h
index 4789839..7efa2d2 100644
--- a/commit.h
+++ b/commit.h
@@ -176,6 +176,7 @@ extern const char *format_subject(struct strbuf *sb, const char *msg,
const char *line_separator);
extern void userformat_find_requirements(const char *fmt, struct userformat_want *w);
extern int commit_format_is_empty(enum cmit_fmt);
+extern const char *skip_blank_lines(const char *msg);
extern void format_commit_message(const struct commit *commit,
const char *format, struct strbuf *sb,
const struct pretty_print_context *context);