summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/main.c b/main.c
index 4b0d496d..774dc61e 100644
--- a/main.c
+++ b/main.c
@@ -74,8 +74,10 @@ static void process(jv value, int flags) {
jv_free(result);
} else {
int dumpopts;
-#ifdef JQ_DEFAULT_ENABLE_COLOR
- dumpopts = JQ_DEFAULT_ENABLE_COLOR ? JV_PRINT_COLOUR : 0;
+ /* Disable colour by default on Windows builds as Windows
+ terminals tend not to display it correctly */
+#ifdef WIN32
+ dumpopts = 0;
#else
dumpopts = isatty(fileno(stdout)) ? JV_PRINT_COLOUR : 0;
#endif