From: Daniel Carl Date: Mon, 16 Apr 2018 19:50:31 +0000 (+0200) Subject: Removed unused struct. X-Git-Url: https://git.owens.tech///git?a=commitdiff_plain;h=70713560e40892048551ec227d7c63f61dfaf504;p=vimb.git Removed unused struct. --- diff --git a/src/map.c b/src/map.c index a52087a..b854207 100644 --- a/src/map.c +++ b/src/map.c @@ -27,16 +27,6 @@ #include "map.h" #include "util.h" -struct MapInfo { - GSList *list; - GString *queue; /* queue holding typed keys */ - int qlen; /* pointer to last char in queue */ - int resolved; /* number of resolved keys (no mapping required) */ - guint timout_id; /* source id of the timeout function */ - char showcmd[SHOWCMD_LEN + 1]; /* buffer to show ambiguous key sequence */ - guint timeoutlen; /* timeout for ambiguous mappings */ -}; - static char *convert_keylabel(const char *in, int inlen, int *len); static char *convert_keys(const char *in, int inlen, int *len); static gboolean do_timeout(Client *c);