From a2cd709de314a7bfa038e14fd36f1d21077b4173 Mon Sep 17 00:00:00 2001 From: Ann T Ropea Date: Sun, 3 Dec 2017 22:27:39 +0100 Subject: print_sha1_ellipsis: introduce helper Introduce a helper print_sha1_ellipsis() that pays attention to the GIT_PRINT_SHA1_ELLIPSIS environment variable, and prepare the tests to unconditionally set it for the test pieces that will be broken once the code stops showing the extra dots by default. The removal of these dots is merely a plan at this step and has not happened yet but soon will. Document GIT_PRINT_SHA1_ELLIPSIS. Signed-off-by: Ann T Ropea Signed-off-by: Junio C Hamano --- environment.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'environment.c') diff --git a/environment.c b/environment.c index 8289c25b44..a3abdd3c58 100644 --- a/environment.c +++ b/environment.c @@ -343,3 +343,18 @@ int use_optional_locks(void) { return git_env_bool(GIT_OPTIONAL_LOCKS_ENVIRONMENT, 1); } + +int print_sha1_ellipsis(void) +{ + /* + * Determine if the calling environment contains the variable + * GIT_PRINT_SHA1_ELLIPSIS set to "yes". + */ + static int cached_result = -1; /* unknown */ + + if (cached_result < 0) { + const char *v = getenv("GIT_PRINT_SHA1_ELLIPSIS"); + cached_result = (v && !strcasecmp(v, "yes")); + } + return cached_result; +} -- cgit v1.2.1