diff --git a/format-draw.c b/format-draw.c index ea1da421a..3fb6a9ae3 100644 --- a/format-draw.c +++ b/format-draw.c @@ -1,4 +1,4 @@ -/* $OpenBSD: format-draw.c,v 1.33 2026/06/29 17:08:52 nicm Exp $ */ +/* $OpenBSD: format-draw.c,v 1.34 2026/07/21 07:20:18 nicm Exp $ */ /* * Copyright (c) 2019 Nicholas Marriott @@ -958,7 +958,7 @@ format_draw(struct screen_write_ctx *octx, const struct grid_cell *base, if (srs != NULL) { if (fr != NULL && !format_is_type(fr, &sy)) { if (s[current].cx != fr->start) { - fr->end = s[current].cx + 1; + fr->end = s[current].cx; TAILQ_INSERT_TAIL(&frs, fr, entry); } else free(fr); diff --git a/tty-keys.c b/tty-keys.c index 61e541165..2d4454b6c 100644 --- a/tty-keys.c +++ b/tty-keys.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty-keys.c,v 1.210 2026/07/10 13:38:45 nicm Exp $ */ +/* $OpenBSD: tty-keys.c,v 1.211 2026/07/21 07:12:49 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -977,8 +977,9 @@ partial_key: if (delay < 500) delay = 500; } - if ((tty->flags & (TTY_WAITFG|TTY_WAITBG) || - (tty->flags & TTY_ALL_REQUEST_FLAGS) != TTY_ALL_REQUEST_FLAGS) || + if (tty->flags & (TTY_WAITFG|TTY_WAITBG) || + tty->flags & (TTY_OSC52QUERY|TTY_WINSIZEQUERY) || + (tty->flags & TTY_ALL_REQUEST_FLAGS) != TTY_ALL_REQUEST_FLAGS || !TAILQ_EMPTY(&c->input_requests)) { log_debug("%s: increasing delay (active query)", c->name); if (delay < 500)