diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-09-10 00:14:50 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-09-10 00:14:50 -0700 |
commit | 6972ab7ae10a205bbc05b98408a36403915a9c39 (patch) | |
tree | 755ab51db764a7d35e9546eb30a5d4440291b014 /commit.h | |
parent | 9784c5c53e0765bc9a0c973ab10aaf0734d535c3 (diff) | |
parent | 20fbfd869fe8faae0ce4573b60b540024db7385d (diff) | |
download | git-6972ab7ae10a205bbc05b98408a36403915a9c39.tar.gz git-6972ab7ae10a205bbc05b98408a36403915a9c39.tar.xz |
Merge branch 'rs/archive'
* rs/archive:
archive - leakfix for format_subst()
Define NO_MEMMEM on Darwin as it lacks the function
archive: rename attribute specfile to export-subst
archive: specfile syntax change: "$Format:%PLCHLDR$" instead of just "%PLCHLDR" (take 2)
add memmem()
Remove unused function convert_sha1_file()
archive: specfile support (--pretty=format: in archive files)
Export format_commit_message()
Diffstat (limited to 'commit.h')
-rw-r--r-- | commit.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -61,6 +61,7 @@ enum cmit_fmt { }; extern enum cmit_fmt get_commit_format(const char *arg); +extern long format_commit_message(const struct commit *commit, const void *template, char **buf_p, unsigned long *space_p); extern unsigned long pretty_print_commit(enum cmit_fmt fmt, const struct commit *, unsigned long len, char **buf_p, unsigned long *space_p, int abbrev, const char *subject, const char *after_subject, enum date_mode dmode); /** Removes the first commit from a list sorted by date, and adds all |