sideband.c: do not use ANSI control sequence on non-terminal
commit38de156a05a4421103e93d43b36e9967e63fb707
authorMichael Naumov <mnaoumov@gmail.com>
Wed, 28 May 2014 03:12:15 +0000 (28 03:12 +0000)
committerJunio C Hamano <gitster@pobox.com>
Mon, 2 Jun 2014 18:02:27 +0000 (2 11:02 -0700)
tree13c244694a81b89572e75de36a6dadc001d7738f
parent4a28f169ad29ba452e0e7bea2583914c10c58322
sideband.c: do not use ANSI control sequence on non-terminal

Diagnostic messages received on the sideband #2 from the server side
are sent to the standard error with ANSI terminal control sequence
"\033[K" that erases to the end of line appended at the end of each
line.

However, some programs (e.g. GitExtensions for Windows) read and
interpret and/or show the message without understanding the terminal
control sequences, resulting them to be shown to their end users.
To help these programs, squelch the control sequence when the
standard error stream is not being sent to a tty.

NOTE: I considered to cover the case that a pager has already been
started. But decided that is probably not worth worrying about here,
though, as we shouldn't be using a pager for commands that do network
communications (and if we do, omitting the magic line-clearing signal
is probably a sane thing to do).

Thanks-to: Erik Faye-Lund <kusmabite@gmail.com>
Thanks-to: Jeff King <peff@peff.net>
Signed-off-by: Michael Naumov <mnaoumov@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sideband.c