diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-08-28 21:19:25 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-08-28 21:19:25 -0700 |
commit | 67c116bb26b4ee31889e5ee15d6a9d3b7e972b7b (patch) | |
tree | 43530142d45ca4e9489abcb76862b2c523c19f4c /git.c | |
parent | 2478bd8318c3ad6eceb7b99f01db29499f63b759 (diff) | |
parent | 92058e4d3e032714da6d2df5fa1fe2cf612979a5 (diff) | |
download | git-67c116bb26b4ee31889e5ee15d6a9d3b7e972b7b.tar.gz |
Merge branch 'jk/pager-with-external-command'
* jk/pager-with-external-command:
support pager.* for external commands
Diffstat (limited to 'git.c')
-rw-r--r-- | git.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -473,6 +473,8 @@ static void execv_dashed_external(const char **argv) const char *tmp; int status; + if (use_pager == -1) + use_pager = check_pager_config(argv[0]); commit_pager_choice(); strbuf_addf(&cmd, "git-%s", argv[0]); |