diff options
author | Matthias Lederhofer <matled@gmx.net> | 2006-07-30 00:27:43 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-31 15:32:24 -0700 |
commit | aa086eb813d4fe21aac556a94efe5e29b44d8ca4 (patch) | |
tree | 04d9a749f051bdf8d3f7239ea29e9917addc7c2d /config.c | |
parent | 9590b041ea464c46d5a6811df5bce83c5dd4d457 (diff) | |
download | git-aa086eb813d4fe21aac556a94efe5e29b44d8ca4.tar.gz |
pager: config variable pager.color
enable/disable colored output when the pager is in use
Signed-off-by: Matthias Lederhofer <matled@gmx.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -309,6 +309,11 @@ int git_default_config(const char *var, const char *value) return 0; } + if (!strcmp(var, "pager.color")) { + pager_use_color = git_config_bool(var,value); + return 0; + } + /* Add other config variables here and to Documentation/config.txt. */ return 0; } |