From 1442b35fb5713d9453a62bfd52ad5ae77fbdeafb Mon Sep 17 00:00:00 2001 From: nick black Date: Fri, 1 Oct 2021 17:07:00 -0400 Subject: [PATCH] [input] enable prep_special_keys() once more --- src/lib/in.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/in.c b/src/lib/in.c index 699d28960..47e5bfb09 100644 --- a/src/lib/in.c +++ b/src/lib/in.c @@ -117,7 +117,6 @@ inc_input_errors(inputctx* ictx){ // load all known special keys from terminfo, and build the input sequence trie static int prep_special_keys(inputctx* ictx){ - /* #ifndef __MINGW64__ static const struct { const char* tinfo; @@ -289,7 +288,6 @@ prep_special_keys(inputctx* ictx){ logdebug("support for terminfo's %s: %s\n", k->tinfo, seq); } #endif - */ (void)ictx; return 0; }