Cygwin: termios: Set ECHOE, ECHOK, ECHOCTL and ECHOKE by default.

- Backspace key does not work correctly in linux session opend by
  ssh from cygwin console if the shell is bash. This is due to lack
  of these flags.

  Addresses: https://cygwin.com/pipermail/cygwin/2020-May/244837.html.
This commit is contained in:
Takashi Yano via Cygwin-patches 2020-05-17 11:34:44 +09:00 committed by Corinna Vinschen
parent 6867660301
commit 5f5810e01c
1 changed files with 2 additions and 1 deletions

View File

@ -33,7 +33,8 @@ fhandler_termios::tcinit (bool is_pty_master)
tc ()->ti.c_iflag = BRKINT | ICRNL | IXON | IUTF8;
tc ()->ti.c_oflag = OPOST | ONLCR;
tc ()->ti.c_cflag = B38400 | CS8 | CREAD;
tc ()->ti.c_lflag = ISIG | ICANON | ECHO | IEXTEN;
tc ()->ti.c_lflag = ISIG | ICANON | ECHO | IEXTEN
| ECHOE | ECHOK | ECHOCTL | ECHOKE;
tc ()->ti.c_cc[VDISCARD] = CFLUSH;
tc ()->ti.c_cc[VEOL] = CEOL;