diff options
author | Christopher Faylor <me@cgf.cx> | 2012-04-15 17:51:22 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2012-04-15 17:51:22 +0000 |
commit | aba77cbe8fddb0c1d9d544eee03aa95faf180c01 (patch) | |
tree | c33ce1d5fe9ce2a1d59cc4fbc59f0f87a4849dd1 /winsup/cygwin/fhandler_console.cc | |
parent | 0a3819e6558be56d5846fe38ff3a48bc88c8fd91 (diff) | |
download | cygnal-aba77cbe8fddb0c1d9d544eee03aa95faf180c01.tar.gz cygnal-aba77cbe8fddb0c1d9d544eee03aa95faf180c01.tar.bz2 cygnal-aba77cbe8fddb0c1d9d544eee03aa95faf180c01.zip |
wincap.h: Rename assitant to assistant throughout. wincap.cc: Ditto.
* devices.in (exists_console): Use fhandler_console::exists () rather than raw
test.
* devices.cc: Regenerate.
* fhandler.h (fhandler_console::exists): Define new function.
* fhandler_console.cc (fhandler_console::need_invisible): Use
fhandler_console::exists () rather than raw test.
* spawn.cc: Rename assitant to assistant throughout.
(child_info_spawn::worker): Simplify test for when to start a non-Cygwin
process in its own process group. Just do it whenever we start a non-Cygwin
process.
Diffstat (limited to 'winsup/cygwin/fhandler_console.cc')
-rw-r--r-- | winsup/cygwin/fhandler_console.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_console.cc b/winsup/cygwin/fhandler_console.cc index d2e993fb0..8c756535d 100644 --- a/winsup/cygwin/fhandler_console.cc +++ b/winsup/cygwin/fhandler_console.cc @@ -2371,7 +2371,7 @@ bool fhandler_console::need_invisible () { BOOL b = false; - if (GetConsoleCP ()) + if (exists ()) invisible_console = false; else { |