From: Sven Verdoolaege <skimo@xxxxxxxxxx> add_ref_decoration is also useful outside of git-log. Since the name_decoration declaration appears in commit.h, the function is moved to commit.c. Signed-off-by: Sven Verdoolaege <skimo@xxxxxxxxxx> --- builtin-log.c | 25 ------------------------- commit.c | 27 +++++++++++++++++++++++++++ commit.h | 3 +++ log-tree.c | 2 -- 4 files changed, 30 insertions(+), 27 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..24d7dd4 100644 --- a/commit.c +++ b/commit.c @@ -1553,3 +1553,30 @@ int in_merge_bases(struct commit *commit, struct commit **reference, int num) free_commit_list(bases); return ret; } + +struct decoration name_decoration = { "object names" }; + +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); +} + +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..bf23535 100644 --- a/commit.h +++ b/commit.h @@ -122,4 +122,7 @@ extern struct commit_list *get_shallow_commits(struct object_array *heads, int depth, int shallow_flag, int not_shallow_flag); int in_merge_bases(struct commit *, struct commit **, int); + +extern int add_ref_decoration(const char *refname, const unsigned char *sha1, int flags, void *cb_data); + #endif /* COMMIT_H */ diff --git a/log-tree.c b/log-tree.c index 8624d5a..b69f029 100644 --- a/log-tree.c +++ b/log-tree.c @@ -4,8 +4,6 @@ #include "log-tree.h" #include "reflog-walk.h" -struct decoration name_decoration = { "object names" }; - static void show_parents(struct commit *commit, int abbrev) { struct commit_list *p; -- 1.5.3.rc0.68.geec71-dirty - 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