mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-04 07:15:29 -04:00
input: remove debug logging
This commit is contained in:
parent
3b5d83a3ec
commit
ebbee61f14
1 changed files with 0 additions and 3 deletions
3
input.c
3
input.c
|
|
@ -1562,7 +1562,6 @@ key_press_release(struct seat *seat, struct terminal *term, uint32_t serial,
|
||||||
bind->mods == (mods & ~consumed) &&
|
bind->mods == (mods & ~consumed) &&
|
||||||
execute_binding(seat, term, bind, serial, 1))
|
execute_binding(seat, term, bind, serial, 1))
|
||||||
{
|
{
|
||||||
LOG_WARN("matched translated symbol");
|
|
||||||
goto maybe_repeat;
|
goto maybe_repeat;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1574,7 +1573,6 @@ key_press_release(struct seat *seat, struct terminal *term, uint32_t serial,
|
||||||
if (bind->k.sym == raw_syms[i] &&
|
if (bind->k.sym == raw_syms[i] &&
|
||||||
execute_binding(seat, term, bind, serial, 1))
|
execute_binding(seat, term, bind, serial, 1))
|
||||||
{
|
{
|
||||||
LOG_WARN("matched untranslated symbol");
|
|
||||||
goto maybe_repeat;
|
goto maybe_repeat;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1584,7 +1582,6 @@ key_press_release(struct seat *seat, struct terminal *term, uint32_t serial,
|
||||||
if (code->item == key &&
|
if (code->item == key &&
|
||||||
execute_binding(seat, term, bind, serial, 1))
|
execute_binding(seat, term, bind, serial, 1))
|
||||||
{
|
{
|
||||||
LOG_WARN("matched raw key code");
|
|
||||||
goto maybe_repeat;
|
goto maybe_repeat;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue