This function will be used also in the find_commit_subject() function.
Signed-off-by: Johannes Schindelin <[email protected]>
---
commit.h | 1 +
pretty.c | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/commit.h b/commit.h
index b06db4d..fbdd18d 100644
--- a/commit.h
+++ b/commit.h
@@ -177,6 +177,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_empty_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);
diff --git a/pretty.c b/pretty.c
index c3ec430..1b807b4 100644
--- a/pretty.c
+++ b/pretty.c
@@ -516,7 +516,7 @@ static int is_empty_line(const char *line, int *len_p)
return !len;
}
-static const char *skip_empty_lines(const char *msg)
+const char *skip_empty_lines(const char *msg)
{
for (;;) {
int linelen = get_one_line(msg);
--
2.9.0.118.g0e1a633
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html