Skip to content

Commit 696ac94

Browse files
authored
Merge pull request #104 from dscho/fix-ctrl+c-again
Allow Ctrl+C to interrupt clone via SSH again
2 parents fe587e1 + 7674c51 commit 696ac94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

winsup/cygwin/fhandler/console.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -831,7 +831,7 @@ fhandler_console::set_input_mode (tty::cons_mode m, const termios *t,
831831
break;
832832
case tty::cygwin:
833833
flags |= ENABLE_WINDOW_INPUT;
834-
if (con.master_thread_suspended)
834+
if (con.master_thread_suspended || con.disable_master_thread)
835835
flags |= ENABLE_PROCESSED_INPUT;
836836
if (wincap.has_con_24bit_colors () && !con_is_legacy)
837837
flags |= ENABLE_VIRTUAL_TERMINAL_INPUT;

0 commit comments

Comments
 (0)