diff options
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/environ.cc | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 7d41cf183..18a997953 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,9 @@ 2011-06-08 Christopher Faylor <me.cygwin2011@cgf.cx> + * environ.cc (tty_is_gone): Add missing space to message. + +2011-06-08 Christopher Faylor <me.cygwin2011@cgf.cx> + * environ.cc (settings::set_process_state): Delete. (tty_is_gone): New function. (known): Change "tty" to call tty_is_gone(). Remove unneeded '&' from diff --git a/winsup/cygwin/environ.cc b/winsup/cygwin/environ.cc index 88b39de6b..5e994652e 100644 --- a/winsup/cygwin/environ.cc +++ b/winsup/cygwin/environ.cc @@ -570,7 +570,7 @@ tty_is_gone (const char *buf) { 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," + "CYGWIN environment variable and use a terminal emulator like mintty, " "xterm, or rxvt\n"); user_shared->warned_notty = 1; } |