diff options
author | Lars Schneider <larsxschneider@gmail.com> | 2017-11-29 15:37:51 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-12-04 18:38:30 +0100 |
commit | a64f213d3fa13fa01e582b6734fe7883ed975dc9 (patch) | |
tree | 24b1b8f7e95c639ed5cf1c77f6bd6e7753e9a20a /cache.h | |
parent | Start preparation for 2.15.1 (diff) | |
download | git-a64f213d3fa13fa01e582b6734fe7883ed975dc9.tar.xz git-a64f213d3fa13fa01e582b6734fe7883ed975dc9.zip |
refactor "dumb" terminal determination
Move the code to detect "dumb" terminals into a single location. This
avoids duplicating the terminal detection code yet again in a subsequent
commit.
Signed-off-by: Lars Schneider <larsxschneider@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
@@ -1438,6 +1438,7 @@ extern const char *ident_default_name(void); extern const char *ident_default_email(void); extern const char *git_editor(void); extern const char *git_pager(int stdout_is_tty); +extern int is_terminal_dumb(void); extern int git_ident_config(const char *, const char *, void *); extern void reset_ident_date(void); |