Remove duplicated line

Oops.
This commit is contained in:
Fabian Homborg
2020-06-24 18:33:26 +02:00
parent 3d2dc856ab
commit d0c1f2a2cc

View File

@@ -647,7 +647,6 @@ static void term_fix_modes(struct termios *modes) {
modes->c_lflag &= ~ICANON; // turn off canonical mode
modes->c_lflag &= ~ECHO; // turn off echo mode
modes->c_lflag &= ~IEXTEN; // turn off handling of discard and lnext characters
modes->c_lflag &= ~IEXTEN; // turn off handling of discard and lnext characters
modes->c_oflag |= OPOST; // turn on "implementation-defined post processing" - this often changes how line breaks work.
// Disable flow control in the shell. We don't want to be stopped.