From d881dd869fc70d807f3630328606c3d3cb3e83f9 Mon Sep 17 00:00:00 2001 From: Jim Kingdon Date: Tue, 18 Jan 1994 04:29:34 +0000 Subject: * ser-unix.c (hardwire_noflush_set_tty_state): Don't muck with ICANON. * inflow.c (terminal_ours_1): When discussing how to deal with the tty state, make note of query() as well as readline. --- gdb/ser-unix.c | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) (limited to 'gdb/ser-unix.c') diff --git a/gdb/ser-unix.c b/gdb/ser-unix.c index 63207dd..d14a996 100644 --- a/gdb/ser-unix.c +++ b/gdb/ser-unix.c @@ -198,23 +198,9 @@ hardwire_noflush_set_tty_state (scb, new_ttystate, old_ttystate) new_state = *(struct hardwire_ttystate *)new_ttystate; -#ifdef HAVE_TERMIOS - /* I'm not sure whether this is necessary; the manpage makes no mention - of discarding input when switching to/from ICANON. */ - if (state->termios.c_lflag & ICANON) - new_state.termios.c_lflag |= ICANON; - else - new_state.termios.c_lflag &= ~ICANON; -#endif - -#ifdef HAVE_TERMIO - /* I'm not sure whether this is necessary; the manpage makes no mention - of discarding input when switching to/from ICANON. */ - if (state->termio.c_lflag & ICANON) - new_state.termio.c_lflag |= ICANON; - else - new_state.termio.c_lflag &= ~ICANON; -#endif + /* Don't change in or out of raw mode; we don't want to flush input. + termio and termios have no such restriction; for them flushing input + is separate from setting the attributes. */ #ifdef HAVE_SGTTY if (state->sgttyb.sg_flags & RAW) -- cgit v1.1