X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=attr.c;h=f6b3f7e850f9fcf5672031049ef1d6f43e619f63;hb=240fe0505f4dd96edf288906743368b4b2e3a864;hp=6aff6951d38d7f672aeb9851eca88c6e5a26b950;hpb=d12d8ec9d728b0ce148f5a5caa68c858ef180d30;p=git.git diff --git a/attr.c b/attr.c index 6aff6951d..f6b3f7e85 100644 --- a/attr.c +++ b/attr.c @@ -465,7 +465,7 @@ static void drop_attr_stack(void) } } -const char *git_etc_gitattributes(void) +static const char *git_etc_gitattributes(void) { static const char *system_wide; if (!system_wide) @@ -473,16 +473,11 @@ const char *git_etc_gitattributes(void) return system_wide; } -int git_attr_system(void) +static int git_attr_system(void) { return !git_env_bool("GIT_ATTR_NOSYSTEM", 0); } -int git_attr_global(void) -{ - return !git_env_bool("GIT_ATTR_NOGLOBAL", 0); -} - static int git_attr_config(const char *var, const char *value, void *dummy) { if (!strcmp(var, "core.attributesfile")) @@ -511,7 +506,7 @@ static void bootstrap_attr_stack(void) } git_config(git_attr_config, NULL); - if (git_attr_global() && attributes_file) { + if (attributes_file) { elem = read_attr_from_file(attributes_file, 1); if (elem) { elem->origin = NULL;