selection: add selection_from_primary() API (stub for now)

This commit is contained in:
Daniel Eklöf 2019-07-11 16:42:59 +02:00
parent 5e1715be18
commit e56066feef
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 11 additions and 1 deletions

View file

@ -338,6 +338,12 @@ selection_from_clipboard(struct terminal *term, uint32_t serial)
close(read_fd);
}
void
selection_from_primary(struct terminal *term)
{
LOG_WARN("selection from PRIMARY");
}
static void
offer(void *data, struct wl_data_offer *wl_data_offer, const char *mime_type)
{