diff options
author | Christopher Faylor <me@cgf.cx> | 2011-07-04 18:14:31 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2011-07-04 18:14:31 +0000 |
commit | 3dce4ce6530b1de78b2c782cccef2d76bf5e6700 (patch) | |
tree | d2cd658cd3a7ee7ac339f641272ae8681c27ab30 | |
parent | fc3e7da6b07f70c4be4d75f79f92a306520b8a7f (diff) | |
download | cygnal-3dce4ce6530b1de78b2c782cccef2d76bf5e6700.tar.gz cygnal-3dce4ce6530b1de78b2c782cccef2d76bf5e6700.tar.bz2 cygnal-3dce4ce6530b1de78b2c782cccef2d76bf5e6700.zip |
* environ.cc (tty_is_gone): Wrap warning at 80 characters.
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/environ.cc | 4 |
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; } } |