* [PATCH] git-diff: don't use colors when stdout is not a tty.
@ 2007-07-06 15:35 Michel Marti
2007-07-06 16:37 ` Matthias Lederhofer
0 siblings, 1 reply; 2+ messages in thread
From: Michel Marti @ 2007-07-06 15:35 UTC (permalink / raw)
To: Git Mailing List
Currently, with diff-coloring enabled, git-diff outputs color escape
sequences even if stdout is redirected (not a tty). This is rather annoying
when trying to further process the output. This patch teaches the diff command
to only do its coloring stuff when a pager is in use or stdout is a tty.
Signed-off-by: Michel Marti <mma@objectxp.com>
---
diff.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/diff.c b/diff.c
index 1958970..988e741 100644
--- a/diff.c
+++ b/diff.c
@@ -451,7 +451,7 @@ static void free_diff_words_data(struct emit_callback *ecbdata)
const char *diff_get_color(int diff_use_color, enum color_diff ix)
{
- if (diff_use_color)
+ if (diff_use_color && (pager_in_use || isatty(STDOUT_FILENO)))
return diff_colors[ix];
return "";
}
--
1.5.2.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-07-06 16:38 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-06 15:35 [PATCH] git-diff: don't use colors when stdout is not a tty Michel Marti
2007-07-06 16:37 ` Matthias Lederhofer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).