The functions add_{name,ref}_decoration() should really be in commit.[ch], since the struct they are modifying is there, too. Signed-off-by: Johannes Schindelin <johannes.schindelin@xxxxxx> --- builtin-log.c | 25 ------------------------- commit.c | 25 +++++++++++++++++++++++++ commit.h | 3 +++ 3 files changed, 28 insertions(+), 25 deletions(-) diff --git a/builtin-log.c b/builtin-log.c index 13bae31..c14eea5 100644 --- a/builtin-log.c +++ b/builtin-log.c @@ -21,31 +21,6 @@ static const char *fmt_patch_subject_prefix = "PATCH"; /* this is in builtin-diff.c */ void add_head(struct rev_info *revs); -static void add_name_decoration(const char *prefix, const char *name, struct object *obj) -{ - int plen = strlen(prefix); - int nlen = strlen(name); - struct name_decoration *res = xmalloc(sizeof(struct name_decoration) + plen + nlen); - memcpy(res->name, prefix, plen); - memcpy(res->name + plen, name, nlen + 1); - res->next = add_decoration(&name_decoration, obj, res); -} - -static int add_ref_decoration(const char *refname, const unsigned char *sha1, int flags, void *cb_data) -{ - struct object *obj = parse_object(sha1); - if (!obj) - return 0; - add_name_decoration("", refname, obj); - while (obj->type == OBJ_TAG) { - obj = ((struct tag *)obj)->tagged; - if (!obj) - break; - add_name_decoration("tag: ", refname, obj); - } - return 0; -} - static void cmd_log_init(int argc, const char **argv, const char *prefix, struct rev_info *rev) { diff --git a/commit.c b/commit.c index 03436b1..c0748ed 100644 --- a/commit.c +++ b/commit.c @@ -1553,3 +1553,28 @@ int in_merge_bases(struct commit *commit, struct commit **reference, int num) free_commit_list(bases); return ret; } + +void add_name_decoration(const char *prefix, const char *name, struct object *obj) +{ + int plen = strlen(prefix); + int nlen = strlen(name); + struct name_decoration *res = xmalloc(sizeof(struct name_decoration) + plen + nlen); + memcpy(res->name, prefix, plen); + memcpy(res->name + plen, name, nlen + 1); + res->next = add_decoration(&name_decoration, obj, res); +} + +int add_ref_decoration(const char *refname, const unsigned char *sha1, int flags, void *cb_data) +{ + struct object *obj = parse_object(sha1); + if (!obj) + return 0; + add_name_decoration("", refname, obj); + while (obj->type == OBJ_TAG) { + obj = ((struct tag *)obj)->tagged; + if (!obj) + break; + add_name_decoration("tag: ", refname, obj); + } + return 0; +} diff --git a/commit.h b/commit.h index 467872e..787ae5e 100644 --- a/commit.h +++ b/commit.h @@ -29,6 +29,9 @@ struct name_decoration { char name[1]; }; +void add_name_decoration(const char *prefix, const char *name, struct object *obj); +int add_ref_decoration(const char *refname, const unsigned char *sha1, int flags, void *cb_data); + struct commit *lookup_commit(const unsigned char *sha1); struct commit *lookup_commit_reference(const unsigned char *sha1); struct commit *lookup_commit_reference_gently(const unsigned char *sha1, -- 1.5.3.rc0.2783.gf3f7 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html