From a3c617249527d96fa8c12e7470ebebec58fde00e Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 1 Jun 2015 13:59:57 +0000 Subject: [PATCH] Missing t at end of response, from Vincent Bernat. --- input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input.c b/input.c index 886d561d..6be5d906 100644 --- a/input.c +++ b/input.c @@ -1599,7 +1599,7 @@ input_csi_dispatch_winops(struct input_ctx *ictx) return; break; case 18: - input_reply(ictx, "\033[8;%u;%u", wp->sy, wp->sx); + input_reply(ictx, "\033[8;%u;%ut", wp->sy, wp->sx); break; default: log_debug("%s: unknown '%c'", __func__, ictx->ch);