path.c: migrate global git_path_* to take a repository argument
Migrate all git_path_* functions that are defined in path.c to take a repository argument. Unlike other patches in this series, do not use the #define trick, as we rewrite the whole function, which is rather small. This doesn't migrate all the functions, as other builtins have their own local path functions defined using GIT_PATH_FUNC. So keep that macro around to serve the other locations. Signed-off-by: Stefan Beller <sbeller@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
0437a2e365
commit
102de880d2
@ -39,7 +39,7 @@ static const char *reset_type_names[] = {
|
||||
|
||||
static inline int is_merge(void)
|
||||
{
|
||||
return !access(git_path_merge_head(), F_OK);
|
||||
return !access(git_path_merge_head(the_repository), F_OK);
|
||||
}
|
||||
|
||||
static int reset_index(const struct object_id *oid, int reset_type, int quiet)
|
||||
|
Reference in New Issue
Block a user