pgo: add missing stubs for key-binding functions

* key_binding_new_for_term()
* key_binding_unref_term()
This commit is contained in:
Daniel Eklöf 2022-04-23 00:44:46 +02:00
parent 1383def2a0
commit 8ceb6e45a4
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -178,6 +178,13 @@ struct key_binding_set *
key_binding_for(
struct key_binding_manager *mgr, const struct terminal *term,
const struct seat *seat)
{
return &kbd;
}
void
key_binding_new_for_term(
struct key_binding_manager *mgr, const struct terminal *term)
{
if (!kbd_initialized) {
kbd_initialized = true;
@ -189,8 +196,11 @@ key_binding_for(
.selection_overrides = 0,
};
}
}
return &kbd;
void
key_binding_unref_term(struct key_binding_manager *mgr, const struct terminal *term)
{
}
int