aboutsummaryrefslogtreecommitdiff
path: root/src/imv.c
diff options
context:
space:
mode:
authorHarry Jeffery <harry@exec64.co.uk>2019-07-15 23:07:49 +0100
committerHarry Jeffery <harry@exec64.co.uk>2019-07-15 23:14:54 +0100
commitd26684fcd450b8618e9ef08808292f568d912399 (patch)
treee75ad95127f57c98ed37656c2898639715e0dfd1 /src/imv.c
parent4e4174918749a44fdcaa4e8390a747698cbcfdb0 (diff)
downloadimv-d26684fcd450b8618e9ef08808292f568d912399.tar.gz
Kill old debug logging
Diffstat (limited to 'src/imv.c')
-rw-r--r--src/imv.c3
1 files changed, 0 insertions, 3 deletions
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);