From 1426d61bc94f46377250677434673deed90d3fbd Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Thu, 11 Feb 2021 18:35:32 +0100 Subject: [PATCH] Stop disabling VSTOP/VSTART Without flow control enabled these won't be interpreted any way. --- src/reader.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/reader.cpp b/src/reader.cpp index 48ea568a2..c4605a8ce 100644 --- a/src/reader.cpp +++ b/src/reader.cpp @@ -790,10 +790,6 @@ static void term_fix_modes(struct termios *modes) { // We ignore these anyway, so there is no need to sacrifice a character. modes->c_cc[VSUSP] = disabling_char; - - // (these two are already disabled because of IXON/IXOFF) - modes->c_cc[VSTOP] = disabling_char; - modes->c_cc[VSTART] = disabling_char; } static void term_fix_external_modes(struct termios *modes) {