From d26684fcd450b8618e9ef08808292f568d912399 Mon Sep 17 00:00:00 2001 From: Harry Jeffery Date: Mon, 15 Jul 2019 23:07:49 +0100 Subject: Kill old debug logging --- src/imv.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/imv.c') diff --git a/src/imv.c b/src/imv.c index 6581013..9792cc3 100644 --- a/src/imv.c +++ b/src/imv.c @@ -405,7 +405,6 @@ static void key_handler(struct imv *imv, int scancode, bool pressed) */ if (!strcmp("colon", keyname)) { - fprintf(stderr, "active console\n"); imv_console_activate(imv->console); imv->need_redraw = true; return; @@ -420,7 +419,6 @@ static void key_handler(struct imv *imv, int scancode, bool pressed) if (cmds) { imv_command_exec_list(imv->commands, cmds, imv); } - fprintf(stderr, "user hit: '%s'\n", keyname); free(keyname); } @@ -1245,7 +1243,6 @@ static int handle_ini_value(void *user, const char *section, const char *name, const char *value) { struct imv *imv = user; - fprintf(stderr, "got section='%s' name='%s' value='%s'\n", section, name, value); if (!strcmp(section, "binds")) { return add_bind(imv, name, value); -- cgit v1.2.3