aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2012-03-18 02:01:16 +0000
committerTiago Cunha <tcunha@gmx.com>2012-03-18 02:01:16 +0000
commit92c522228b65db753ed4ec4ec4703bd70cfb1732 (patch)
treebc193f9e7c7b3609e9f4ec2a0f32331129c890c5
parent3a902f41962521cadc6e7646d35bec3f091c0fd3 (diff)
downloadrtmux-92c522228b65db753ed4ec4ec4703bd70cfb1732.tar.gz
rtmux-92c522228b65db753ed4ec4ec4703bd70cfb1732.tar.bz2
rtmux-92c522228b65db753ed4ec4ec4703bd70cfb1732.zip
Sync OpenBSD patchset 1059:
Tweak last fix to actually hit the right end of pane.
-rw-r--r--tty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tty.c b/tty.c
index 3f8b5d0a..d0d5ed00 100644
--- a/tty.c
+++ b/tty.c
@@ -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);