Sync OpenBSD patchset 1059:

Tweak last fix to actually hit the right end of pane.
pull/1/head
Tiago Cunha 2012-03-18 02:01:16 +00:00
parent 3a902f4196
commit 92c522228b
1 changed files with 1 additions and 1 deletions

2
tty.c
View File

@ -1001,7 +1001,7 @@ tty_cmd_cell(struct tty *tty, const struct tty_ctx *ctx)
* The pane doesn't fill the entire line, the linefeed
* will already have happened, so just move the cursor.
*/
if (ctx->ocy != wp->yoff + wp->sy)
if (ctx->ocy != wp->yoff + wp->sy - 1)
tty_cursor_pane(tty, ctx, 0, ctx->ocy + 1);
else
tty_cursor_pane(tty, ctx, 0, ctx->ocy);