From 38e2e037e67e723f19009e0ecc81c4f53010e399 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 1 Feb 2020 19:26:08 +0100 Subject: [PATCH] csi: drop '28' from our DA response We don't support rectangular editing --- csi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csi.c b/csi.c index b9480c6b..9932421f 100644 --- a/csi.c +++ b/csi.c @@ -369,7 +369,7 @@ csi_dispatch(struct terminal *term, uint8_t final) * - 28 Rectangular editing. * - 29 ANSI text locator (i.e., DEC Locator mode). */ - const char *reply = "\033[?62;6;15;17;22;28c"; + const char *reply = "\033[?62;6;15;17;22c"; term_to_slave(term, reply, strlen(reply)); break; }