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:
		
				
					committed by
					
						 Corinna Vinschen
						Corinna Vinschen
					
				
			
			
				
	
			
			
			
						parent
						
							6867660301
						
					
				
				
					commit
					5f5810e01c
				
			| @@ -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; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user