Skip to content

Commit 3765f26

Browse files
committed
Default to no colors if output is not terminal.
1 parent 10ad90b commit 3765f26

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

direwolf.c

+6
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@
5959
#endif
6060

6161
#if __WIN32__
62+
#include <stdio.h>
63+
#include <io.h>
6264
#else
6365
#include <unistd.h>
6466
#include <fcntl.h>
@@ -252,7 +254,11 @@ int main (int argc, char *argv[])
252254
* something else such as "tee") but command line can override this.
253255
*/
254256

257+
#if __WIN32__
258+
t_opt = _isatty(_fileno(stdout)) > 0;
259+
#else
255260
t_opt = isatty(fileno(stdout));
261+
#endif
256262
/* 1 = normal, 0 = no text colors. */
257263
/* 2, 3, ... alternate escape sequences for different terminals. */
258264

0 commit comments

Comments
 (0)