diff options
author | Christopher Faylor <me@cgf.cx> | 2002-11-14 18:02:05 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-11-14 18:02:05 +0000 |
commit | 33902276b16d76fae626125d86f0d4ebc43e9216 (patch) | |
tree | 56584652ea3f47b569c452973488f73820b885ba /winsup/cygwin/fhandler_console.cc | |
parent | 5b213f8bd6a0417da92b16c13804600bcc191a13 (diff) | |
download | cygnal-33902276b16d76fae626125d86f0d4ebc43e9216.tar.gz cygnal-33902276b16d76fae626125d86f0d4ebc43e9216.tar.bz2 cygnal-33902276b16d76fae626125d86f0d4ebc43e9216.zip |
checking previously ChangeLog'ed file.
Diffstat (limited to 'winsup/cygwin/fhandler_console.cc')
-rw-r--r-- | winsup/cygwin/fhandler_console.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_console.cc b/winsup/cygwin/fhandler_console.cc index 80ea71a43..c8b8ee981 100644 --- a/winsup/cygwin/fhandler_console.cc +++ b/winsup/cygwin/fhandler_console.cc @@ -1530,7 +1530,7 @@ fhandler_console::write (const void *vsrc, size_t len) case gettitle: { int n = strlen (dev_state->my_title_buf); - if (*src < ' ' || *src >= '\177') + if (*src < ' ') { if (*src == '\007' && dev_state->state_ == gettitle) { |