Skip to content
Snippets Groups Projects
Commit f3b5c9f3 authored by Brad King's avatar Brad King
Browse files

BUG: Fixed bug in check for vt100 assumption.

parent 2586bc8d
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,7 @@ void kwsysTerminal_cfprintf(int color, FILE* stream, const char* format, ...)
/* Setup the stream with the given color if possible. */
int pipeIsConsole = 0;
int pipeIsVT100 = 0;
int default_vt100 = color & kwsysTerminal_Color_AssumeTTY;
int default_vt100 = color & kwsysTerminal_Color_AssumeVT100;
int default_tty = color & kwsysTerminal_Color_AssumeTTY;
#if defined(KWSYS_TERMINAL_SUPPORT_CONSOLE)
CONSOLE_SCREEN_BUFFER_INFO hOutInfo;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment