diff options
author | Jonathan Nieder <jrnieder@gmail.com> | 2009-10-31 02:41:27 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-11-13 21:20:47 +0100 |
commit | 6361824589bc2d32989a9a33f985d09a368436a3 (patch) | |
tree | 31050baa04194fee66e0c05b0e9569c538b41925 /cache.h | |
parent | Teach git var about GIT_EDITOR (diff) | |
download | git-6361824589bc2d32989a9a33f985d09a368436a3.tar.xz git-6361824589bc2d32989a9a33f985d09a368436a3.zip |
Teach git var about GIT_PAGER
Expose the command found by setup_pager() for scripts to use.
Scripts can use this to avoid repeating the logic to look for a
proper pager in each command.
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -751,6 +751,7 @@ extern const char *git_committer_info(int); extern const char *fmt_ident(const char *name, const char *email, const char *date_str, int); extern const char *fmt_name(const char *name, const char *email); extern const char *git_editor(void); +extern const char *git_pager(void); struct checkout { const char *base_dir; |