Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2012-04-15 21:51:22 +0400
committerChristopher Faylor <me@cgf.cx>2012-04-15 21:51:22 +0400
commitaba77cbe8fddb0c1d9d544eee03aa95faf180c01 (patch)
treec33ce1d5fe9ce2a1d59cc4fbc59f0f87a4849dd1 /winsup/cygwin/fhandler_console.cc
parent0a3819e6558be56d5846fe38ff3a48bc88c8fd91 (diff)
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.cc2
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
{