cygwin directory changes:
* environ.cc (tty_is_gone): Delete. (known): Delete tty, add wincmdln. * globals.cc: Reorganize list of environment bools, remove explicit = false for slight load time optimization. (wincmdln): New global. * spawn.cc (child_info_spawn::worker): Honor wincmdln. doc directory changes: * new-features.sgml (ov-new1.7.23): Add new section. Mention wincmdln. * cygwinenv.xml: Mention wincmdln.
This commit is contained in:
@@ -76,19 +76,6 @@ set_proc_retry (const char *buf)
|
||||
child_info::retry_count = strtoul (buf, NULL, 0);
|
||||
}
|
||||
|
||||
static void
|
||||
tty_is_gone (const char *buf)
|
||||
{
|
||||
if (!user_shared->warned_notty)
|
||||
{
|
||||
small_printf ("\"tty\" option detected in CYGWIN environment variable.\n"
|
||||
"CYGWIN=tty is no longer supported. Please remove it from your\n"
|
||||
"CYGWIN environment variable and use a terminal emulator like mintty,\n"
|
||||
"xterm, or rxvt.\n");
|
||||
user_shared->warned_notty = 1;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
set_winsymlinks (const char *buf)
|
||||
{
|
||||
@@ -146,7 +133,7 @@ static struct parse_thing
|
||||
{"pipe_byte", {&pipe_byte}, setbool, NULL, {{false}, {true}}},
|
||||
{"proc_retry", {func: set_proc_retry}, isfunc, NULL, {{0}, {5}}},
|
||||
{"reset_com", {&reset_com}, setbool, NULL, {{false}, {true}}},
|
||||
{"tty", {func: tty_is_gone}, isfunc, NULL, {{0}, {0}}},
|
||||
{"wincmdln", {&wincmdln}, setbool, NULL, {{false}, {true}}},
|
||||
{"winsymlinks", {func: set_winsymlinks}, isfunc, NULL, {{0}, {0}}},
|
||||
{NULL, {0}, setdword, 0, {{0}, {0}}}
|
||||
};
|
||||
|
Reference in New Issue
Block a user