Cygwin meets the expectations of gdb for styling (if TERM is set and not
'DUMB', the terminal supports 'ANSI' (ECMA-48) escape sequences.
gdb/ChangeLog:
2020-01-02  Jon Turney  <jon.turney@dronecode.org.uk>
	* cli/cli-style.c: Set cli_styling to 'true' in the Cygwin build.
+2020-01-02  Jon Turney  <jon.turney@dronecode.org.uk>
+
+       * cli/cli-style.c: Set cli_styling to 'true' in the Cygwin build.
+
 2020-01-06  Andrew Burgess  <andrew.burgess@embecosm.com>
 
        * stack.c (print_frame_info): Move disassemble_next_line code
 
 
 /* True if styling is enabled.  */
 
-#if defined (__MSDOS__) || defined (__CYGWIN__)
+#if defined (__MSDOS__)
 bool cli_styling = false;
 #else
 bool cli_styling = true;