# # patch "ChangeLog" # from [84dfe063beab3a3c5a0de771f53dfaec013f73e0] # to [a19164875e8175d5def0acfc6819f457079e5aec] # # patch "win32/terminal.cc" # from [f747b2f947980bbf6561cd97441709b82159cf29] # to [e79234a8f5c29f47deae3d84703a2792678b6e74] # --- ChangeLog +++ ChangeLog @@ -1,3 +1,8 @@ +2005-05-23 Nathaniel Smith + + * win32/terminal.cc (have_smart_terminal): Call _isatty on stderr, + not stdout. + 2005-05-20 Nathaniel Smith * contrib/mtbrowse.sh: New file. --- win32/terminal.cc +++ win32/terminal.cc @@ -20,7 +20,7 @@ term = ""; if (term == "" || term == "emacs" || term == "dumb" - || !_isatty(_fileno(stdout))) + || !_isatty(_fileno(stderr))) return false; else return true;