diff options
Diffstat (limited to 'degesch.c')
-rw-r--r-- | degesch.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -2094,6 +2094,14 @@ init_terminal (void) return false; } + // Make sure newlines are output correctly + struct termios termios; + if (!tcgetattr (tty_fd, &termios)) + { + termios.c_oflag |= ONLCR; + (void) tcsetattr (tty_fd, TCSADRAIN, &termios); + } + g_terminal.lines = tigetnum ("lines"); g_terminal.columns = tigetnum ("cols"); update_screen_size (); |