Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Default to no color for output #495

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 1 addition & 13 deletions src/direwolf.c
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ int main (int argc, char *argv[])
char input_file[80];
char T_opt_timestamp[40];

int t_opt = 1; /* Text color option. */
int t_opt = 0; /* Text color option. */
int a_opt = 0; /* "-a n" interval, in seconds, for audio statistics report. 0 for none. */
int g_opt = 0; /* G3RUH mode, ignoring default for speed. */
int j_opt = 0; /* 2400 bps PSK compatible with direwolf <= 1.5 */
Expand Down Expand Up @@ -269,18 +269,6 @@ int main (int argc, char *argv[])

#endif

/*
* Pre-scan the command line options for the text color option.
* We need to set this before any text output.
* Default will be no colors if stdout is not a terminal (i.e. piped into
* something else such as "tee") but command line can override this.
*/

#if __WIN32__
t_opt = _isatty(_fileno(stdout)) > 0;
#else
t_opt = isatty(fileno(stdout));
#endif
/* 1 = normal, 0 = no text colors. */
/* 2, 3, ... alternate escape sequences for different terminals. */

Expand Down