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>2011-07-04 22:14:31 +0400
committerChristopher Faylor <me@cgf.cx>2011-07-04 22:14:31 +0400
commit3dce4ce6530b1de78b2c782cccef2d76bf5e6700 (patch)
treed2cd658cd3a7ee7ac339f641272ae8681c27ab30 /winsup/cygwin
parentfc3e7da6b07f70c4be4d75f79f92a306520b8a7f (diff)
* environ.cc (tty_is_gone): Wrap warning at 80 characters.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/environ.cc4
2 files changed, 6 insertions, 2 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index ec89ee7d6..650a91837 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+2011-07-04 Christopher Faylor <me.cygwin2011@cgf.cx>
+
+ * environ.cc (tty_is_gone): Wrap warning at 80 characters.
+
2011-07-04 Corinna Vinschen <corinna@vinschen.de>
Throughout, open console handles with sharing for reading and writing.
diff --git a/winsup/cygwin/environ.cc b/winsup/cygwin/environ.cc
index a49510cae..3a075f8ab 100644
--- a/winsup/cygwin/environ.cc
+++ b/winsup/cygwin/environ.cc
@@ -87,8 +87,8 @@ 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, "
- "xterm, or rxvt\n");
+ "CYGWIN environment variable and use a terminal emulator like mintty,\n"
+ "xterm, or rxvt.\n");
user_shared->warned_notty = 1;
}
}