diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-11-20 23:48:52 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-11-20 23:48:52 -0800 |
commit | 376f39fbea0dfb31402abda878a7b0018f6a6161 (patch) | |
tree | d97dd8a947407fc4c36a97ad7b8b37e6b8142e9e /cache.h | |
parent | 7a4383cf13819cd2ef00f0d60318aad3f1813117 (diff) | |
parent | a3d023d0a3783612053f2149e784b43befceccad (diff) | |
download | git-376f39fbea0dfb31402abda878a7b0018f6a6161.tar.gz |
Merge branch 'jn/editor-pager'
* jn/editor-pager:
Provide a build time default-pager setting
Provide a build time default-editor setting
am -i, git-svn: use "git var GIT_PAGER"
add -i, send-email, svn, p4, etc: use "git var GIT_EDITOR"
Teach git var about GIT_PAGER
Teach git var about GIT_EDITOR
Suppress warnings from "git var -l"
Do not use VISUAL editor on dumb terminals
Handle more shell metacharacters in editor names
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -751,6 +751,8 @@ extern const char *git_author_info(int); 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; |