Do not emit \r\n to move to column 0 if there are margins, because it

will instead move to the margin left.
pull/1041/merge
nicm 2017-08-21 21:01:21 +00:00
parent 768740ae98
commit 7ec2a2b9ce
1 changed files with 2 additions and 1 deletions

3
tty.c
View File

@ -1609,7 +1609,8 @@ tty_cursor(struct tty *tty, u_int cx, u_int cy)
}
/* Zero on the next line. */
if (cx == 0 && cy == thisy + 1 && thisy != tty->rlower) {
if (cx == 0 && cy == thisy + 1 && thisy != tty->rlower &&
(!tty_use_margin(tty) || tty->rleft == 0)) {
tty_putc(tty, '\r');
tty_putc(tty, '\n');
goto out;