From: nicm Date: Mon, 1 Jun 2015 13:59:57 +0000 (+0000) Subject: Missing t at end of response, from Vincent Bernat. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=2a4caad77c3a3574c439a3a174ca7182df0fb4e1;p=openbsd Missing t at end of response, from Vincent Bernat. --- diff --git a/usr.bin/tmux/input.c b/usr.bin/tmux/input.c index 777a406ef31..f4226edff64 100644 --- a/usr.bin/tmux/input.c +++ b/usr.bin/tmux/input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: input.c,v 1.75 2015/05/11 10:10:16 nicm Exp $ */ +/* $OpenBSD: input.c,v 1.76 2015/06/01 13:59:57 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -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);