diff options
author | Christopher Faylor <me@cgf.cx> | 2002-12-21 04:38:12 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-12-21 04:38:12 +0000 |
commit | b18962e228dc5a9b4729acd79078fca1389f2ba7 (patch) | |
tree | c82f7b51122c3992c5e643cf39e8a6e53bc5715f /winsup/cygwin/fhandler.h | |
parent | 4753d27c08a083096da1f6ef571e0496621a7b86 (diff) | |
download | cygnal-b18962e228dc5a9b4729acd79078fca1389f2ba7.tar.gz cygnal-b18962e228dc5a9b4729acd79078fca1389f2ba7.tar.bz2 cygnal-b18962e228dc5a9b4729acd79078fca1389f2ba7.zip |
* fhandler.h (line_edit_status): Reorganize so that tests for error condition
can be < or >.
* fhandler_tty.cc (fhandler_pty_master::write): Don't return after sending a
signal.
* fhandler_termios.cc (fhandler_termios::line_edit): Trivial change to use
built-in bool types.
Diffstat (limited to 'winsup/cygwin/fhandler.h')
-rw-r--r-- | winsup/cygwin/fhandler.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h index bea1bf26c..c38789b97 100644 --- a/winsup/cygwin/fhandler.h +++ b/winsup/cygwin/fhandler.h @@ -120,11 +120,11 @@ struct iovec; enum line_edit_status { - line_edit_signalled = -1, line_edit_ok = 0, line_edit_input_done = 1, - line_edit_error = 2, - line_edit_pipe_full = 3 + line_edit_signalled = 2, + line_edit_error = 3, + line_edit_pipe_full = 4 }; enum bg_check_types |