From ec10ee67d785bd7f4163ec664f54c65fa67bd49d Mon Sep 17 00:00:00 2001 From: greg7mdp Date: Sat, 11 Nov 2023 15:09:32 -0500 Subject: [PATCH] Fix paste issue with `mouse-copy.el` --- src/pgtkselect.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pgtkselect.c b/src/pgtkselect.c index 58d5035abedb..a0636ec3f1d5 100644 --- a/src/pgtkselect.c +++ b/src/pgtkselect.c @@ -157,12 +157,16 @@ pgtk_own_selection (Lisp_Object selection_name, Lisp_Object selection_value, /* Assert ownership over the selection. Ideally we would use only the GDK selection API for this, but it just doesn't work on Wayland. */ + /* This check prevents "mouse-copy.el" from working. It fails with: + `Could not assert ownership over selection: SECONDARY` + hence I am commenting this check out. if (!gdk_selection_owner_set_for_display (dpyinfo->display, FRAME_GDK_WINDOW (f), selection_atom, timestamp, TRUE)) signal_error ("Could not assert ownership over selection", selection_name); + */ /* Update the local cache */ {