From 3cce89d8edc9c3151bd982c6b5acfa8c20d5ae71 Mon Sep 17 00:00:00 2001 From: shin- Date: Tue, 26 Mar 2013 07:10:31 -0700 Subject: [PATCH] Fixed issue with misplaced cursor after output --- term/termios_linux.go | 1 - 1 file changed, 1 deletion(-) diff --git a/term/termios_linux.go b/term/termios_linux.go index 09d632c303..ef2c84c7e8 100644 --- a/term/termios_linux.go +++ b/term/termios_linux.go @@ -15,7 +15,6 @@ void MakeRaw(int fd) { ioctl(fd, TCGETS, &t); t.c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | IGNCR | ICRNL | IXON); - t.c_oflag &= ~OPOST; t.c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN); t.c_cflag &= ~(CSIZE | PARENB); t.c_cflag |= CS8;