From 04c768f0e5e33d88908530b55599c3812da0f59d Mon Sep 17 00:00:00 2001 From: nick black Date: Fri, 19 Nov 2021 04:10:14 -0500 Subject: [PATCH] [input] remove unused termqueries struct --- src/lib/in.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/lib/in.c b/src/lib/in.c index 407ccbb17..d2553d475 100644 --- a/src/lib/in.c +++ b/src/lib/in.c @@ -36,17 +36,6 @@ void sigwinch_handler(int signo){ } } -// data collected from responses to our terminal queries. -typedef struct termqueries { - int celly, cellx; // cell geometry on startup - int pixy, pixx; // pixel geometry on startup - int cursory, cursorx; // cursor location on startup - unsigned kittygraphs; // are kitty graphics supported? - int sixely, sixelx; // maximum sixel size - int cregs; // sixel color registers - unsigned appsync; // application-sync supported? -} termqueries; - typedef struct cursorloc { int y, x; // 0-indexed cursor location } cursorloc;