This variable is only ever used by the routines in pager.c, and other parts of the code should always use those routines (like git_pager()) to make decisions about which pager to use. Let's reduce its scope to prevent accidents. Signed-off-by: Jeff King <peff@xxxxxxxx> --- cache.h | 1 - environment.c | 1 - pager.c | 1 + 3 files changed, 1 insertion(+), 2 deletions(-) diff --git a/cache.h b/cache.h index 6738050..4f23952 100644 --- a/cache.h +++ b/cache.h @@ -1786,7 +1786,6 @@ extern void write_file(const char *path, const char *fmt, ...); /* pager.c */ extern void setup_pager(void); -extern const char *pager_program; extern int pager_in_use(void); extern int pager_use_color; extern int term_columns(void); diff --git a/environment.c b/environment.c index ca72464..c266428 100644 --- a/environment.c +++ b/environment.c @@ -40,7 +40,6 @@ size_t packed_git_window_size = DEFAULT_PACKED_GIT_WINDOW_SIZE; size_t packed_git_limit = DEFAULT_PACKED_GIT_LIMIT; size_t delta_base_cache_limit = 96 * 1024 * 1024; unsigned long big_file_threshold = 512 * 1024 * 1024; -const char *pager_program; int pager_use_color = 1; const char *editor_program; const char *askpass_program; diff --git a/pager.c b/pager.c index d747f50..8aa0a82 100644 --- a/pager.c +++ b/pager.c @@ -7,6 +7,7 @@ #endif static struct child_process pager_process = CHILD_PROCESS_INIT; +static const char *pager_program; static void wait_for_pager(int in_signal) { -- 2.10.0.230.g6f8d04b