Browse Source

Fixed issue with misplaced cursor after output

shin- 12 years ago
parent
commit
3cce89d8ed
1 changed files with 0 additions and 1 deletions
  1. 0 1
      term/termios_linux.go

+ 0 - 1
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;