summaryrefslogtreecommitdiff
path: root/commit.h
diff options
context:
space:
mode:
authorStefan Beller <sbeller@google.com>2018-06-29 01:22:22 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-06-29 17:43:40 (GMT)
commit1f6c72fe55fded90cadcefffe5bd980a6f896579 (patch)
tree6477d6c57868564dca825fab113e47ad914d3a9f /commit.h
parentd9a05e74ec01bb59fccb70c005269d930cd60d9a (diff)
downloadgit-1f6c72fe55fded90cadcefffe5bd980a6f896579.zip
git-1f6c72fe55fded90cadcefffe5bd980a6f896579.tar.gz
git-1f6c72fe55fded90cadcefffe5bd980a6f896579.tar.bz2
commit.c: allow lookup_commit_reference to handle arbitrary repositories
Signed-off-by: Stefan Beller <sbeller@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'commit.h')
-rw-r--r--commit.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/commit.h b/commit.h
index f1f2595..8b2cf96 100644
--- a/commit.h
+++ b/commit.h
@@ -64,9 +64,8 @@ void add_name_decoration(enum decoration_type type, const char *name, struct obj
const struct name_decoration *get_name_decoration(const struct object *obj);
struct commit *lookup_commit(struct repository *r, const struct object_id *oid);
-#define lookup_commit_reference(r, o) \
- lookup_commit_reference_##r(o)
-struct commit *lookup_commit_reference_the_repository(const struct object_id *oid);
+struct commit *lookup_commit_reference(struct repository *r,
+ const struct object_id *oid);
struct commit *lookup_commit_reference_gently(struct repository *r,
const struct object_id *oid,
int quiet);